Merge 6753, 6755, 6764, 6767, 6773, 6774 and 6775 to prod #4610
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: Only allow staging -> prod & !prod -> staging merges | |
on: | |
pull_request: | |
branches: | |
- staging | |
- prod | |
jobs: | |
check-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Only allow staging -> prod merges | |
run: | | |
# All branches *except* prod can be merged into staging | |
# *Only* staging can be merged into prod | |
echo "Merging ${GITHUB_HEAD_REF} into ${GITHUB_BASE_REF}" | |
python3 -c 'import os, sys; sys.exit(not(os.environ["GITHUB_HEAD_REF"] == "staging" if os.environ["GITHUB_BASE_REF"] == "prod" else os.environ["GITHUB_HEAD_REF"] != "prod"))' |