From 3744cda4cffbe80a6bfb440d8300b6b23922b894 Mon Sep 17 00:00:00 2001 From: Lutz Reinhardt Date: Fri, 13 Mar 2026 09:05:03 +0000 Subject: [PATCH 1/3] Remove description field from workflow This field is not part of the workflow scheme and causes the entire workflow file to be ignored. --- .github/workflows/ci.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c4b83ac..4d9d6ca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,7 +18,6 @@ on: branches: - main merge_group: - concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true @@ -82,10 +81,8 @@ jobs: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin ./scripts/publish.sh --${{ matrix.os }} "main" fi - overall-result: name: build/overall-result - description: Overall Result runs-on: ubuntu-24.04 needs: [build/amd64, build/arm64] if: ${{ !cancelled() }} @@ -96,7 +93,6 @@ jobs: - name: Failing verification if: ${{ contains(needs.*.result, 'failure') }} run: exit 1 - merge: name: Merge Labels (main only) needs: [build] From 285761291d12e9decb2f3e3e2a6e2fda21a58513 Mon Sep 17 00:00:00 2001 From: Lutz Reinhardt Date: Fri, 13 Mar 2026 10:05:17 +0000 Subject: [PATCH 2/3] simpler needs dependency --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4d9d6ca..b7fbb42 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -84,7 +84,7 @@ jobs: overall-result: name: build/overall-result runs-on: ubuntu-24.04 - needs: [build/amd64, build/arm64] + needs: [build] if: ${{ !cancelled() }} steps: - name: Successful verification From 9f277d874c22e5d1bbf50a7c013ad2bff417958d Mon Sep 17 00:00:00 2001 From: Lutz Reinhardt Date: Fri, 13 Mar 2026 11:35:52 +0000 Subject: [PATCH 3/3] remove unused matrix description field --- .github/workflows/ci.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b7fbb42..9df46a6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,12 +28,10 @@ jobs: os: [arm64, amd64] include: - os: amd64 - name: build/amd64 - description: DevContainer (amd64) + name: DevContainer (amd64) runner: ubuntu-24.04 - os: arm64 - name: build/arm64 - description: DevContainer (arm64) + name: DevContainer (arm64) runner: ubuntu-24.04-arm name: ${{ matrix.name }} runs-on: ${{ matrix.runner }}