Bump args from 2.5.0 to 2.6.0 #74
Workflow file for this run
This file contains 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
# A workflow to prevent PRs from being submitted through the GitHub UI. | |
name: Do Not Submit | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
do-not-submit: | |
name: Gerrit reviewed | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "Do not submit this PR through github - this repo uses Gerrit for reviews." | |
exit 1 |