Skip to content

Commit 66fb35a

Browse files
committed
Use FQBN as job name in "Compile Examples" workflow
The `jobs.<job_id>.name` key sets the human identifier for the workflow job shown in the workflow run logs. By default, the name of matrix jobs is based on the job ID combined with the `jobs.<job_id>.strategy.matrix` object, which can result in an unnecessarily long and cryptic job name. The job ID + the FQBN of the job's target board is sufficient. The use of this job name format will improve the readability of the workflow run logs.
1 parent 8fab0c6 commit 66fb35a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/compile-examples.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ on:
2424

2525
jobs:
2626
build:
27+
name: ${{ matrix.board.fqbn }}
2728
runs-on: ubuntu-latest
2829

2930
env:

0 commit comments

Comments
 (0)