Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/promote-shipped-apis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:

$branch = "${{ github.ref_name }}"
$prBranch = "promote-shipped-apis-$branch"
git push origin $prBranch
git push -u origin HEAD:$prBranch

- name: Create new PR
if: steps.check_pr.outputs.pr_exists == 'false' && steps.check_changes.outputs.has_changes == 'true'
Expand All @@ -107,8 +107,5 @@ jobs:
$prBranch = "promote-shipped-apis-$branch"
$title = "automatic promotion of shipped APIs for $branch"

git checkout -b $prBranch
git push origin $prBranch

gh pr create --title "$title" --base "$branch" --head "$prBranch" --body "Automatically promotes unshipped APIs to shipped after running the promotion script."

Loading