Update Dependencies #3
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 Branch' | |
on: | |
pull_request: | |
branches: | |
- base | |
jobs: | |
check_branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check branch | |
if: github.head_ref != 'development' | |
run: | | |
echo "ERROR: You can only merge to base from the development branch." | |
exit 1 |