You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -69,19 +69,19 @@ jobs:
69
69
- name: Add + Commit
70
70
uses: EndBug/add-and-commit@v9
71
71
with:
72
-
new_branch: v${{ env.SDK_VERSION }}
72
+
new_branch: release/v${{ env.SDK_VERSION }}
73
73
message: Bump version to ${{ env.SDK_VERSION }}
74
74
75
75
- name: Open PR
76
76
run: |
77
-
gh pr create -t "v${{ env.SDK_VERSION }}" -b "This is an auto-generated PR to merge the release branch back into main upon successful release" -B "main" -H "v${{ env.SDK_VERSION }}"
77
+
gh pr create -t "release/v${{ env.SDK_VERSION }}" -b "This is an auto-generated PR to merge the release branch back into main upon successful release" -B "main" -H "release/v${{ env.SDK_VERSION }}"
0 commit comments