1
0
mirror of https://github.com/arduino/library-registry.git synced 2025-04-26 17:28:53 +03:00

Use custom matrix job names in check-submissions job

The "Manage PRs" GitHub Actions workflow generates a matrix job for each library submitted by the PR. The default job
name is generated from the job's matrix object. This contains the complete submission data, which results in a long and
somewhat cryptic job name that can make the workflow run more difficult to interpret.

The only necessary information is the description of the job's purpose ("check") and the submission URL (multiple URLs
per PR are supported). A custom job name allows for only using this information in the job name.
This commit is contained in:
per1234 2021-04-14 00:39:40 -07:00
parent f17835d35c
commit 016fc6cb8c

View File

@ -125,6 +125,7 @@ jobs:
- ${{ needs.parse.outputs.type }}
check-submissions:
name: Check ${{ matrix.submission.submissionURL }}
needs:
- enabled
- parse