From: Benjamin Drung Date: Tue, 20 Jan 2026 10:25:26 +0000 (+0100) Subject: ci: name container jobs after CI name X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6f7f705ff85a71af3f17798de4c712920d4aeae;p=thirdparty%2Fdracut-ng.git ci: name container jobs after CI name Name the container jobs after their CI name instead of `amd64` since they also build `arm64` images. --- diff --git a/.github/workflows/container-extra.yml b/.github/workflows/container-extra.yml index 9a3573d6a..73c4e8d0b 100644 --- a/.github/workflows/container-extra.yml +++ b/.github/workflows/container-extra.yml @@ -24,12 +24,12 @@ permissions: contents: read jobs: - amd64: + container-extra: if: github.repository == 'dracut-ng/dracut-ng' || vars.CONTAINER == 'enabled' name: ${{ matrix.config.tag }} on ${{ matrix.architecture.platform }} runs-on: ${{ matrix.architecture.runner }} concurrency: - group: extra-amd64-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }}-${{ matrix.architecture.platform }} + group: container-extra-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }}-${{ matrix.architecture.platform }} cancel-in-progress: true strategy: fail-fast: false diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index e950fc015..bcbf6f116 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -22,11 +22,11 @@ permissions: contents: read jobs: - amd64: + container: if: github.repository == 'dracut-ng/dracut-ng' || vars.CONTAINER == 'enabled' name: ${{ matrix.config.tag }} on ${{ matrix.architecture.platform }} concurrency: - group: amd64-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }}-${{ matrix.architecture.platform }} + group: container-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }}-${{ matrix.architecture.platform }} cancel-in-progress: true strategy: fail-fast: false