Split non-prod GitHub App into separate per-environment apps and new environment config for running service Locally #1072
Workflow file for this run
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: Check Basis | |
| on: | |
| pull_request: | |
| jobs: | |
| no-basis: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Check for Basis | |
| run: | | |
| if grep -iR basis --exclude-dir=.github --exclude-dir=.git .; then | |
| exit 1 | |
| else | |
| exit 0 | |
| fi |