Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/agents/release.agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The stable release pipeline triggers automatically when the release branch is pu

### Phase 3 — Advance `main` back to dev

Goal: Keep `main` moving forward on an odd minor with `-dev` suffix.
Goal: Keep `main` moving forward on the next **odd** minor version with `-dev` suffix. Stable releases use even minor versions; dev versions use odd.

1. From `main` (or a new branch off it, replacing `2026.5.0-dev` with the actual next dev version):
```
Expand All @@ -88,13 +88,18 @@ Goal: Keep `main` moving forward on an odd minor with `-dev` suffix.
- From: the stable version just released (e.g. `2026.4.0` — *example*)
- To: the next odd minor with `-dev` suffix (e.g. `2026.5.0-dev` — *example*)

3. Commit, push, and merge via PR (replace `2026.5.0-dev` with the actual next dev version):
```
git add package.json
git commit -m "Bump version to 2026.5.0-dev"
git push origin bump/2026.5.0-dev
3. Commit and push (replace `2026.5.0-dev` with the actual next dev version):
```
git add package.json
git commit -m "Bump version to 2026.5.0-dev"
git push origin bump/2026.5.0-dev
```

4. Create a PR targeting `main`, add the `debt` label, and enable auto-merge:
```
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
gh pr merge <PR_NUMBER> --squash --auto
```
Open a PR targeting `main` and merge it.

> ✋ **Confirm**: Has `main` been updated to the next dev version?

Expand Down
1 change: 0 additions & 1 deletion build/azure-devdiv-pipeline.stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,3 @@ extends:
ghCreateRelease: true
ghReleaseAddChangeLog: true
customNPMRegistry: $(AZURE_ARTIFACTS_FEED)

Loading