File tree 1 file changed +10
-7
lines changed
1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,13 @@ jobs:
79
79
git push --set-upstream origin ${{ needs.release-branch.outputs.release-branch }} && git push --tags
80
80
81
81
- name : Create Pull Request
82
- uses : peter-evans/create-pull-request@v7
83
- with :
84
- token : ${{ secrets.GITHUB_TOKEN }}
85
- branch : ${{ needs.release-branch.outputs.release-branch }}
86
- base : ${{ env.BRANCH_NAME }}
87
- title : ' Release'
88
- body : ' Automated release PR for ${{ env.BRANCH_NAME }}'
82
+ # uses: peter-evans/create-pull-request@v7
83
+ # with:
84
+ # token: ${{ secrets.GITHUB_TOKEN }}
85
+ # branch: ${{ needs.release-branch.outputs.release-branch }}
86
+ # base: ${{ env.BRANCH_NAME }}
87
+ # title: 'Release'
88
+ # body: 'Automated release PR for ${{ env.BRANCH_NAME }}'
89
+ run : gh pr create -B ${{ env.BRANCH_NAME }} -H ${{ needs.release-branch.outputs.release-branch }} --title 'Merge branch_to_merge into base_branch' --body 'Created by Github action'
90
+ env :
91
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments