]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
ci: name container jobs after CI name
authorBenjamin Drung <benjamin.drung@canonical.com>
Tue, 20 Jan 2026 10:25:26 +0000 (11:25 +0100)
committerLaszlo <laszlo.gombos@gmail.com>
Tue, 20 Jan 2026 12:40:11 +0000 (07:40 -0500)
Name the container jobs after their CI name instead of `amd64` since
they also build `arm64` images.

.github/workflows/container-extra.yml
.github/workflows/container.yml

index 9a3573d6aef89242ceed9841a66905142f50e84a..73c4e8d0b41762774571be9aa01c52e930c1bfa9 100644 (file)
@@ -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
index e950fc0150b667f08d9bf78100d9525bf66c3497..bcbf6f116824e523017b6bdb3fa5d1073a9a5792 100644 (file)
@@ -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