Update README.md #56
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
# This is a basic workflow that is manually triggered | |
name: 'Disallow any merging to master if this is not coming from develop' | |
# Controls when the action will run. | |
# Workflow is triggered when a PR is opened | |
on: | |
pull_request: | |
# for this PR set the variable contains_hot_fix to zero and then update it | |
# only if the branch starts with hotfix_ | |
jobs: | |
check_branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract branch name | |
id: search_hot_fix | |
shell: bash | |
run: | | |
echo "contains_hot_fix=0" >> $GITHUB_OUTPUT | |
if [[ $GITHUB_HEAD_REF == *"hotfix_"* ]]; then | |
echo "contains_hot_fix=1" >> $GITHUB_OUTPUT | |
fi | |
- name: Message System Hot Fix | |
if: steps.search_hot_fix.outputs.contains_hot_fix == 1 | |
run: echo "Branch name contains hotfix_." | |
- name: Message System Not Hot Fix | |
if: steps.search_hot_fix.outputs.contains_hot_fix == 0 | |
run: echo "Branch name does not contain hotfix_." | |
- name: Check branch | |
if: github.base_ref == 'master' && github.head_ref != 'develop' && steps.search_hot_fix.outputs.contains_hot_fix == 0 | |
run: | | |
echo "ERROR: You can only merge to main branch from develop branch or a hotfix_ branch." | |
exit 1 |