From 0c1cd34c4694bc389b885de3b33a6d74fa04acd2 Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 2 Aug 2021 13:21:41 -0700 Subject: [PATCH] Use FQBN for sketch compilation workflow job names The "Compile Examples" workflow used to do a "smoke test" sketch compilation CI check uses a job matrix to compile the sketches for all boards of interest. By default, the matrix job is named by the matrix element for that job. This element includes board data used to make board-specific job customizations. That attribute data makes the job name, which is used to identify it in the checks status UI and workflow logs, fairly cryptic. The only information of interest to a human identifying the job is the FQBN. Defining a custom job name overrides the default job naming behavior. --- .github/workflows/compile-examples.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index 60bd691..c86ff0e 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -48,6 +48,7 @@ on: jobs: build: + name: ${{ matrix.board.fqbn }} runs-on: ubuntu-latest env: