mirror of https://github.com/panjf2000/ants.git
17 lines
465 B
YAML
17 lines
465 B
YAML
|
name: Check pull request target
|
||
|
on:
|
||
|
pull_request_target:
|
||
|
types:
|
||
|
- opened
|
||
|
- reopened
|
||
|
- synchronize
|
||
|
jobs:
|
||
|
check-branches:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check target branch
|
||
|
run: |
|
||
|
if [ ${{ github.base_ref }} == "master" ] && [ ${{ github.head_ref }} != "dev" ]; then
|
||
|
echo "Only pull requests from dev branch are only allowed to be merged into master branch."
|
||
|
exit 1
|
||
|
fi
|