File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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.
8888 - From: the stable version just released (e.g. `2026.4.0` — *example*)
8989 - To: the next odd minor with `-dev` suffix (e.g. `2026.5.0-dev` — *example*)
9090
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 pre-release development version." --label debt
101+ gh pr merge <PR_NUMBER> --squash --auto
96102 ```
97- Open a PR targeting `main` and merge it.
98103
99104> ✋ **Confirm**: Has `main` been updated to the next dev version?
100105
You can’t perform that action at this time.
0 commit comments