mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
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 <noreply@anthropic.com> Co-authored-by: Ahmad Kaouk <56095276+ahmadkaouk@users.noreply.github.com>
This commit is contained in:
parent
6b39d093c6
commit
2f06562467
1 changed files with 2 additions and 2 deletions
4
.github/workflows/enforce-pr-labels.yml
vendored
4
.github/workflows/enforce-pr-labels.yml
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue