From 4b36852f577c330cfa4adc32ff3229109e6782ea Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 15 Aug 2021 02:34:21 -0700 Subject: [PATCH] Use the matrix identifier to name the "Check Certificates" workflow jobs When no name is provided for a matrix job, the workflow job is named according to the contents of `jobs[]..strategy.matrix[]`. That can result in some fairly cryptic job names when the matrix contains a complex data structure as is the case here. We already have a string to uniquely identify each certificate to humans, which is exactly what the `jobs[]..name` property does for jobs, so it will be an improvement to name the jobs according to that identifier. --- .github/workflows/check-certificates.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check-certificates.yml b/.github/workflows/check-certificates.yml index 2d834997..68969877 100644 --- a/.github/workflows/check-certificates.yml +++ b/.github/workflows/check-certificates.yml @@ -20,6 +20,7 @@ env: jobs: check-certificates: + name: ${{ matrix.certificate.identifier }} # Only run when the workflow will have access to the certificate secrets. if: > (github.event_name != 'pull_request' && github.repository == 'arduino/arduino-ide') ||