Change solochain flag into subcommand #3201
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Enforce PR labels | |
on: | |
pull_request: | |
types: [labeled, unlabeled, opened, edited, synchronize] | |
jobs: | |
enforce-noteworthiness-label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: yogevbd/enforce-label-action@2.2.2 | |
with: | |
REQUIRED_LABELS_ANY: "B0-silent,B5-clientnoteworthy,B7-runtimenoteworthy" | |
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') | |
uses: yogevbd/enforce-label-action@2.2.2 | |
with: | |
REQUIRED_LABELS_ANY: "breaking,not-breaking" | |
REQUIRED_LABELS_ALL: "" | |
BANNED_LABELS: "" | |
enforce-auditability-label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: yogevbd/enforce-label-action@2.2.2 | |
with: | |
REQUIRED_LABELS_ANY: "D1-audited👍,D5-nicetohaveaudit⚠️,D9-needsaudit👮,D2-notlive,D3-trivial" | |
REQUIRED_LABELS_ALL: "" | |
BANNED_LABELS: "" |