python-boto3/.github/workflows/fail-master-prs.yml
2021-09-22 09:34:33 -07:00

15 lines
303 B
YAML

name: PRs against master are not accepted, please target develop branch
on:
pull_request:
branches: [ master ]
jobs:
fail:
runs-on: ubuntu-latest
steps:
- name: Fail PRs against master
run: |
echo "PRs must be made against the develop branch."
exit 1