File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2626 version : v${{ inputs.version }}
2727 push_tag : ${{ inputs.push_changes }}
2828 - name : " Determine branch to merge up to"
29- if : ${{ inputs.push_changes }}
29+ if : ${{ inputs.push_changes == 'true' && ! contains(fromJSON(inputs.ignored_branches), github.ref_name) }}
3030 id : get-next-branch
3131 uses : alcaeus/automatic-merge-up-action/get-next-branch@a43d2c2d3ed5a92a1fce3e3bde21c27c578f50d3 # 1.0.0
3232 with :
3636 fallbackBranch : ' master'
3737 ignoredBranches : ${{ inputs.ignored_branches }}
3838 - name : " Manually merge up changes"
39- if : ${{ inputs.push_changes && steps.get-next-branch.outputs.hasNextBranch }}
39+ if : ${{ inputs.push_changes == 'true' && ! contains(fromJSON(inputs.ignored_branches), github.ref_name) && steps.get-next-branch.outputs.hasNextBranch }}
4040 shell : bash
4141 run : |
4242 git checkout ${NEXT_BRANCH}
You can’t perform that action at this time.
0 commit comments