Skip to content

Commit 016fc6c

Browse files
committed
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.
1 parent f17835d commit 016fc6c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/manage-prs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ jobs:
125125
- ${{ needs.parse.outputs.type }}
126126
127127
check-submissions:
128+
name: Check ${{ matrix.submission.submissionURL }}
128129
needs:
129130
- enabled
130131
- parse

0 commit comments

Comments
 (0)