Skip to content

Commit a5949ef

Browse files
bschnurrCopilot
andcommitted
Update release agent: explicit PR steps for dev bump
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 4ef282d commit a5949ef

1 file changed

Lines changed: 11 additions & 6 deletions

File tree

.github/agents/release.agent.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)