From 6b39d093c67aaa43e39ee11502bdaa60aeef1cfa Mon Sep 17 00:00:00 2001 From: Ahmad Kaouk <56095276+ahmadkaouk@users.noreply.github.com> Date: Fri, 13 Mar 2026 16:40:33 +0100 Subject: [PATCH 1/2] fix(ci): use test build context for validator submitter image (#475) ## Summary - fix the validator-set-submitter release workflow to build with `./test` as the Docker context - align the workflow with the Dockerfile and `test/.dockerignore` expectations ## Testing - docker build --no-cache -t validator-set-submitter:fix -f ./test/tools/validator-set-submitter/Dockerfile ./test - docker run --rm validator-set-submitter:fix --help --- .../workflows/task-docker-release-validator-set-submitter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/task-docker-release-validator-set-submitter.yml b/.github/workflows/task-docker-release-validator-set-submitter.yml index bf7a7539..73c70b13 100644 --- a/.github/workflows/task-docker-release-validator-set-submitter.yml +++ b/.github/workflows/task-docker-release-validator-set-submitter.yml @@ -89,7 +89,7 @@ jobs: uses: ./.github/workflow-templates/publish-docker with: dockerfile: ./test/tools/validator-set-submitter/Dockerfile - context: . + context: ./test registry: docker.io registry_username: ${{ secrets.DOCKERHUB_USERNAME }} registry_password: ${{ secrets.DOCKERHUB_TOKEN }} From 2f06562467ef0168204eed217df7a465c821f9ab Mon Sep 17 00:00:00 2001 From: Steve Degosserie <723552+stiiifff@users.noreply.github.com> Date: Mon, 16 Mar 2026 09:03:40 +0100 Subject: [PATCH 2/2] ci: add B9-contractsnoteworthy to enforce-noteworthiness-label check (#474) ## Summary - Add `B9-contractsnoteworthy` as a valid noteworthiness label in the PR label enforcement workflow - Require `breaking`/`not-breaking` label when `B9-contractsnoteworthy` is applied, consistent with other noteworthy labels Co-authored-by: Claude Opus 4.6 Co-authored-by: Ahmad Kaouk <56095276+ahmadkaouk@users.noreply.github.com> --- .github/workflows/enforce-pr-labels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/enforce-pr-labels.yml b/.github/workflows/enforce-pr-labels.yml index 3ac91cbc..af427deb 100644 --- a/.github/workflows/enforce-pr-labels.yml +++ b/.github/workflows/enforce-pr-labels.yml @@ -11,11 +11,11 @@ jobs: steps: - uses: yogevbd/enforce-label-action@2.2.2 with: - REQUIRED_LABELS_ANY: "B0-silent,B5-clientnoteworthy,B7-runtimenoteworthy" + REQUIRED_LABELS_ANY: "B0-silent,B5-clientnoteworthy,B7-runtimenoteworthy,B9-contractsnoteworthy" REQUIRED_LABELS_ALL: "" BANNED_LABELS: "" - name: Verify breaking changes label - if: contains(github.event.pull_request.labels.*.name, 'B5-clientnoteworthy') || contains(github.event.pull_request.labels.*.name, 'B7-runtimenoteworthy') + if: contains(github.event.pull_request.labels.*.name, 'B5-clientnoteworthy') || contains(github.event.pull_request.labels.*.name, 'B7-runtimenoteworthy') || contains(github.event.pull_request.labels.*.name, 'B9-contractsnoteworthy') uses: yogevbd/enforce-label-action@2.2.2 with: REQUIRED_LABELS_ANY: "breaking,not-breaking"