Skip to content

Commit 80a27f6

Browse files
bschnurrCopilot
andauthored
Narrow stable pipeline tag trigger to v* pattern (#1002)
* Bump version to 2026.4.0 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Add PR guidelines to copilot-instructions.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix stable pipeline trigger to only use tags Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Update release agent: tags-only trigger Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Narrow stable pipeline tag trigger to v* pattern Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 1f6af4e commit 80a27f6

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

.github/agents/release.agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Start by reading `package.json` to determine the current version. Then confirm w
1818
1919
- **Even minor** = stable release (e.g. `2026.4.0` — *example*)
2020
- **Odd minor** = pre-release / dev (e.g. `2026.3.0-dev`, `2026.5.0-dev` — *examples*)
21-
- The stable release pipeline (`build/azure-devdiv-pipeline.stable.yml`) triggers on git tags matching `refs/tags/*`
21+
- The stable release pipeline (`build/azure-devdiv-pipeline.stable.yml`) triggers on git tags matching `v*`
2222
- Tag format: `v<version>` (e.g. `v2026.4.0` — *example*)
2323
- Release branch format: `release/<YYYY>.<EVEN_MINOR>` (e.g. `release/2026.4` — *example*)
2424

build/azure-devdiv-pipeline.stable.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
name: Publish Release
22
trigger:
3-
branches:
4-
include:
5-
- release*
63
tags:
7-
include: ['*']
4+
include: ['v*']
85
pr: none
96

107
resources:

0 commit comments

Comments
 (0)