From 9ccb036e435306678d8a1a1c9335257ec29ffd7e Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Thu, 10 Jul 2025 17:21:49 -0400 Subject: [PATCH] workflows/build: be clearer about what is being built Committers could get the false impression from, e.g., `PR / Build / aarch64-linux` that this workflow builds the packages changed in the current PR. Such a misunderstanding could pair poorly with the "enable auto-merge" button, once that's enabled. (cherry picked from commit 261bba1fcdd31321a7cabd88ed03c1893e67f6c2) --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 29c7c68d631f..2ca140aee4c8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,16 +28,20 @@ jobs: - runner: ubuntu-24.04 system: x86_64-linux builds: [shell, manual-nixos, lib-tests] + desc: shell, docs, lib - runner: ubuntu-24.04-arm system: aarch64-linux builds: [shell, manual-nixos, manual-nixpkgs, manual-nixpkgs-tests] + desc: shell, docs - runner: macos-13 system: x86_64-darwin builds: [shell] + desc: shell - runner: macos-14 system: aarch64-darwin builds: [shell] - name: ${{ matrix.system }} + desc: shell + name: '${{ matrix.system }}: ${{ matrix.desc }}' runs-on: ${{ matrix.runner }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2