File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 7070 echo ${{ steps.create_branch.outputs.new_branch }}
7171 git push origin ${{ steps.create_branch.outputs.new_branch }}
7272 - name : Create Pull Request
73- uses : peter-evans/create-pull-request@v7
7473 env :
7574 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
76- with :
77- token : ${{ secrets.GITHUB_TOKEN }}
78- base : ${{ inputs.target_branch }}
79- branch : ${{ steps.create_branch.outputs.new_branch }}
80- delete-branch : false
81- title : " Cherry-pick PRs for Milestone: ${{ inputs.milestone }}"
82- body : " This PR cherry-picks the following commits into the ${{ inputs.target_branch }} branch:\n\n ${{ steps.fetch_prs.outputs.pr_list }}"
75+ run : |
76+ gh pr create --base ${{ inputs.target_branch }} --head ${{ steps.create_branch.outputs.new_branch }} -t "Cherry-pick PRs for Milestone: ${{ inputs.milestone }}" -b "This PR cherry-picks the following commits into the ${{ inputs.target_branch }} branch:\n\n${{ steps.fetch_prs.outputs.pr_list }}"
8377
8478
You can’t perform that action at this time.
0 commit comments