Skip to content
Open
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
704 changes: 704 additions & 0 deletions .ai/commands/merge-minor.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions .ai/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# AI Notes

Use [Conventional Commits](https://www.conventionalcommits.org/) for PR titles.

## Commands

- [Backport](commands/backport.md) — backport feature commits to stable release branches.
- [Merge minor](commands/merge-minor.md) — prepare, recreate, and validate minor merge and stable-release branches.
3 changes: 3 additions & 0 deletions .claude/commands/merge-minor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Follow the instructions in .ai/commands/merge-minor.md

Minor / range: $ARGUMENTS
4 changes: 2 additions & 2 deletions .github/workflows/microsoft-npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish to npm
on:
push:
branches:
- "*-stable"
- '*-stable'

concurrency:
# Serialize release lines because they share the latest and next tags.
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup toolchain
uses: ./.github/actions/microsoft-setup-toolchain
with:
node-version: "22"
node-version: '22'

- name: Install dependencies
run: yarn install --immutable
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/microsoft-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ name: PR
on:
pull_request:
types: [opened, synchronize, edited]
branches: ['main', '*-stable', 'release/*', '*-merge', 'review/**', 'saadnajmi/0-85-redbox2-merge']
branches:
[
'main',
'*-stable',
'release/*',
'*-merge',
'review/**',
'saadnajmi/0-85-redbox2-merge',
]

concurrency:
# Ensure single build of a pull request. `main` should not be affected.
Expand Down
Loading
Loading