Merge pull request #1283 from mulkieran/cancel-outdated-test-runs #2103
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: stratis-cli dummy CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| dummy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run dummy test | |
| run: echo "I exist to be Required in Github branch protection rules" |