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
+12-7Lines changed: 12 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ The stable release pipeline triggers automatically when the release branch is pu
76
76
77
77
### Phase 3 — Advance `main` back to dev
78
78
79
-
Goal: Keep `main` moving forward on an odd minor with `-dev` suffix.
79
+
Goal: Keep `main` moving forward on the next **odd** minor version with `-dev` suffix. Stable releases use even minor versions; dev versions use odd.
80
80
81
81
1. From `main` (or a new branch off it, replacing `2026.5.0-dev` with the actual next dev version):
82
82
```
@@ -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 --base main --title "Bump version to 2026.5.0-dev" --body "Advance main to the next odd minor pre-release development version." --label debt
101
+
gh pr merge <PR_NUMBER> --squash --auto
96
102
```
97
-
Open a PR targeting `main` and merge it.
98
103
99
104
> ✋ **Confirm**: Has `main` been updated to the next dev version?
0 commit comments