Fix classification of disposal-during-reconnect as cancelled, not failed #1018
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 |