Check role when receiving status updates in the Operator Status Indicator #23333
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: PRCop | |
on: | |
pull_request: | |
types: | |
- labeled | |
- unlabeled | |
- opened | |
- reopened | |
- synchronize | |
- edited | |
pull_request_review_comment: | |
types: | |
- created | |
env: | |
LABELS: ${{ join( github.event.pull_request.labels.*.name, ' ' ) }} | |
jobs: | |
prcop: | |
runs-on: ubuntu-latest | |
name: Template Check | |
steps: | |
- name: Linting Pull Request | |
uses: makaroni4/[email protected] | |
with: | |
config-file: '.github/workflows/prcop-config.json' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
check-type-label: | |
name: Check type Label | |
runs-on: ubuntu-latest | |
steps: | |
- if: contains( env.LABELS, 'type:' ) == false | |
run: exit 1 | |
check-milestone: | |
name: Check Milestone | |
runs-on: ubuntu-latest | |
steps: | |
- if: github.event.pull_request.milestone == null && contains( env.LABELS, 'no milestone' ) == false | |
run: exit 1 |