Read node logs to check it used warp sync in test #443
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/[email protected] | |
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/[email protected] | |
with: | |
REQUIRED_LABELS_ANY: "breaking,not-breaking" | |
REQUIRED_LABELS_ALL: "" | |
BANNED_LABELS: "" |