-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🚀 [Feature]: Add functions to manage Artifacts
#334
Conversation
…ifact properties
…omWorkflowRun` functions for retrieving GitHub artifacts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the documentation for API function coverage related to managing Artifacts, reflecting the recently added functions. Key changes include updated counts for covered and missing functions, an increased overall coverage percentage, and modified endpoint statuses in the API endpoints table.
Files not reviewed (5)
- src/classes/public/Artifacts/GitHubArtifact.ps1: Language not supported
- src/formats/GitHubArtifact.Format.ps1xml: Language not supported
- src/functions/private/Artifacts/Get-GitHubArtifactFromWorkflowRun.ps1: Language not supported
- src/functions/public/API/Invoke-GitHubAPI.ps1: Language not supported
- src/functions/public/Artifacts/Get-GitHubArtifact.ps1: Language not supported
Comments suppressed due to low confidence (2)
Coverage.md:313
- Verify that the update from ':x:' to ':white_check_mark:' for the '/repos/{owner}/{repo}/actions/runs/{run_id}' endpoint accurately reflects the function coverage status after adding Artifact management functionalities.
| `/repos/{owner}/{repo}/actions/runs/{run_id}` | :x: | :white_check_mark: | | | |
Coverage.md:316
- Confirm that changing the status from ':x:' to ':white_check_mark:' for the '/repos/{owner}/{repo}/actions/runs/{run_id}/artifacts' endpoint is intentional and reflects the new functionality coverage.
| `/repos/{owner}/{repo}/actions/runs/{run_id}/artifacts` | | :white_check_mark: | | | |
…d documentation and examples
…rtifact for improved artifact handling
…handling with Owner and Repository parameters
…emove-GitHubArtifact to suppress output
…ipelineByPropertyName for improved usability
…rtifact format for improved readability
…d align Expired column for consistency
…GitHubArtifact format for improved readability; enhance ZIP file download warning message
…nctions to enhance documentation and usability
…ave-GitHubArtifact functions for improved clarity and maintainability
…Save-GitHubArtifact to improve clarity and maintainability
…logic, including filename extraction and directory creation for improved functionality
…ndling and ensuring directory existence for improved reliability
…sure directory existence for enhanced reliability
…tions, and add Get-GitHubArtifactById and Get-GitHubArtifactFromRepository functions for improved artifact management
…arameter handling
…th improved documentation and parameter handling
… and improved output formatting
…pository and update status parameter handling in Get-GitHubWorkflowRun
…tedAt and PreviousAttemptUrl properties
…eter to Get-GitHubWorkflowRun cmdlet
…ing configuration
…ll naming conventions
Module GitHub - 0.20.0 published to the PowerShell Gallery. |
GitHub release for GitHub v0.20.0 has been created. |
Description
This pull request introduces several enhancements and new features related to handling GitHub Actions artifacts, including a new PowerShell class and functions to manage artifacts.
Enhancements to Artifact Management:
Artifact class and format:
GitHubArtifact
class to represent GitHub Actions artifacts with properties likeDatabaseID
,NodeID
,Name
,Owner
,Repository
,Size
,Url
,ArchiveDownloadUrl
,Expired
,Digest
,CreatedAt
,UpdatedAt
,ExpiresAt
, andWorkflowRun
.GitHubArtifact.Format.ps1xml
to define a table view for displaying artifact properties in a structured format.New public function for artifact management:
New private functions for artifact retrieval:
Get-GitHubArtifactById
function to retrieve a specific artifact by its unique identifier.Get-GitHubArtifactFromRepository
function to list all artifacts for a given repository, with an option to include all versions.Get-GitHubArtifactFromWorkflowRun
function to list all artifacts from a specific workflow run, with an option to include all versions.Type of change
Checklist