From 016fc6cb8c586c93ee28a75f2c4b70976f4f3357 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 14 Apr 2021 00:39:40 -0700 Subject: [PATCH] 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. --- .github/workflows/manage-prs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/manage-prs.yml b/.github/workflows/manage-prs.yml index 2ebd0de7..9490e531 100644 --- a/.github/workflows/manage-prs.yml +++ b/.github/workflows/manage-prs.yml @@ -125,6 +125,7 @@ jobs: - ${{ needs.parse.outputs.type }} check-submissions: + name: Check ${{ matrix.submission.submissionURL }} needs: - enabled - parse