We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6591a7b + 99fdcf8 commit cf59c23Copy full SHA for cf59c23
.github/workflows/promote-shipped-apis.yml
@@ -95,7 +95,7 @@ jobs:
95
96
$branch = "${{ github.ref_name }}"
97
$prBranch = "promote-shipped-apis-$branch"
98
- git push origin $prBranch
+ git push -u origin HEAD:$prBranch
99
100
- name: Create new PR
101
if: steps.check_pr.outputs.pr_exists == 'false' && steps.check_changes.outputs.has_changes == 'true'
@@ -107,8 +107,5 @@ jobs:
107
108
$title = "automatic promotion of shipped APIs for $branch"
109
110
- git checkout -b $prBranch
111
112
-
113
gh pr create --title "$title" --base "$branch" --head "$prBranch" --body "Automatically promotes unshipped APIs to shipped after running the promotion script."
114
0 commit comments