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/agents/release.agent.md
+11-6Lines changed: 11 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,13 +88,18 @@ Goal: Keep `main` moving forward on an odd minor with `-dev` suffix.
88
88
- From: the stable version just released (e.g. `2026.4.0` — *example*)
89
89
- To: the next odd minor with `-dev` suffix (e.g. `2026.5.0-dev` — *example*)
90
90
91
-
3. Commit, push, and merge via PR (replace `2026.5.0-dev` with the actual next dev version):
92
-
```
93
-
git add package.json
94
-
git commit -m "Bump version to 2026.5.0-dev"
95
-
git push origin bump/2026.5.0-dev
91
+
3. Commit and push (replace `2026.5.0-dev` with the actual next dev version):
92
+
```
93
+
git add package.json
94
+
git commit -m "Bump version to 2026.5.0-dev"
95
+
git push origin bump/2026.5.0-dev
96
+
```
97
+
98
+
4. Create a PR targeting `main`, add the `debt` label, and enable auto-merge:
99
+
```
100
+
gh pr create --repo "microsoft/vscode-python-debugger" --head "bschnurr:bump/2026.5.0-dev" --base main --title "Bump version to 2026.5.0-dev" --body "Advance main to the next pre-release development version." --label debt
0 commit comments