Added a file to get a diff #8
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: Simulate a check on a pull request | |
| on: | |
| pull_request: | |
| #types: [opened, synchronize, reopened] | |
| branches: | |
| - main | |
| jobs: | |
| simulate-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Simulate Check | |
| run: | | |
| echo "This is a simulation of a check on a pull request that fails." | |
| exit 1 |