this one *is* an agency onboarding issue #3
This file contains hidden or 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: "Project triage: test" | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| if: "contains( github.event.issue.labels.*.name, 'agency-onboarding')" | |
| steps: | |
| - run: echo 'new agency onboarding issue detected' | |
| inverted-check: | |
| runs-on: ubuntu-latest | |
| if: "!contains( github.event.issue.labels.*.name, 'agency-onboarding')" | |
| steps: | |
| - run: echo 'new issue detected, not agency onboarding though' |