From 4368e56e02c75227d83383350f5f9ac76f5c4c3a Mon Sep 17 00:00:00 2001 From: Steve Degosserie <723552+stiiifff@users.noreply.github.com> Date: Thu, 12 Mar 2026 13:13:13 +0100 Subject: [PATCH] ci: add B9-contractsnoteworthy to enforce-noteworthiness-label check Include B9-contractsnoteworthy as a valid noteworthiness label in the PR label enforcement workflow, and require breaking/not-breaking label when it is applied. Co-Authored-By: Claude Opus 4.6 --- .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"