Print artifacts that are found when listing
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 5.9k
- Forks
- 1.8k
- PR merge metrics
- No merged PRs in 30d
Description
Describe the enhancement
Currently, when using actions/download-artifact, it calls this repository's listArtifactsPublic to list the artifacts from the relevant run. When using a pattern to filter artifacts, the reader can't see why the pattern didn't select anything. E.g.:
Found 1 artifact(s)
Filtering artifacts by pattern '{pr-number,jupytergis-playwright-tests,jupytergis-lite-playwright-tests}'
Total of 0 artifact(s) downloaded
Download artifact has finished successfully
Proposal: Print Found 1 artifact(s): [<list of artifacts>]
Code Snippet
If applicable, add a code snippet to show the api enhancement.
- info(`Found ${artifacts.length} artifact(s)`)
+ info(`Found ${artifacts.length} artifact(s): ${artifacts}`)
Additional information
Add any other context about the feature here.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the actions/download-artifact code that calls listArtifactsPublic and emits the existing “Found artifact(s)” info message. Update the listing output to include the names of artifacts found, then verify that matching and non-matching patterns still report the discovered artifacts clearly.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- devops
- Issue type
- Feature
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Quiet
- Clarity
- Clearly specified
- Newbie friendliness
- 72/100