File: fail-master-prs.yml

package info (click to toggle)
python-s3transfer 0.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,464 kB
  • sloc: python: 15,756; makefile: 9
file content (17 lines) | stat: -rw-r--r-- 334 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: PRs against master are not accepted, please target develop branch

on:
  pull_request:
    branches: [ master ]

permissions:
  contents: read

jobs:
  fail:
    runs-on: ubuntu-latest
    steps:
      - name: Fail PRs against master
        run: |
          echo "PRs must be made against the develop branch."
          exit 1