File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -12,5 +12,7 @@ permissions:
1212jobs :
1313 call-prepare :
1414 uses : leoweyr/github-release-workflow/.github/workflows/reusable-prepare-release.yml@develop
15+ with :
16+ base-branch : ' master'
1517 secrets :
1618 ACCESS_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 88 required : false
99 type : string
1010 default : ' 20'
11+ base-branch :
12+ description : ' Base branch name for release pull requests.'
13+ required : false
14+ type : string
15+ default : ' master'
1116 commit-user-name :
1217 description : ' Git user name for commit'
1318 required : false
95100 gh pr create \
96101 --title "release: ${{ env.TAG_NAME }}" \
97102 --body-file pr_body_cleaned.md \
98- --base master \
103+ --base ${{ inputs.base-branch }} \
99104 --head release/${{ env.TAG_NAME }}
You can’t perform that action at this time.
0 commit comments