patch: v2.3.3 #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check pull request target | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
branches: | |
- master | |
jobs: | |
check-branches: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check target branch | |
run: | | |
if [ ${{ github.head_ref }} != "dev" ]; then | |
echo "Only pull requests from dev branch are only allowed to be merged into master branch." | |
exit 1 | |
fi |