Commit 2970d712 authored by w-e-w's avatar w-e-w
Browse files

Warns merge into master

parent c58cf73c
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
name: Pull requests can't target master branch

"on":
  pull_request:
    types:
      - opened
      - synchronize
      - reopened
    branches:
      - master

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - name: Warning marge into master
        run: |
          echo -e "::warning::This pull request directly merge into \"master\" branch, normally development happens on \"dev\" branch."
          exit 1