python-boto3/.github/workflows/fail-master-prs.yml

15 lines
303 B
YAML
Raw Normal View History

2021-09-22 18:34:33 +02:00
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