Skip to content

Commit 8151ce8

Browse files
committed
Start v2 branch
1 parent d9ec019 commit 8151ce8

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/docsite.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Update documentation site
22

33
on:
44
push:
5-
branches: [main]
5+
# The docsite publishes from the v2 branch for now
6+
branches: [v2]
67
paths:
78
- 'docs/**'
89
- .github/workflows/docsite.yml

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: PR
55

66
on:
77
pull_request:
8-
branches: [main]
8+
branches: [main, v2]
99
push:
10-
branches: [main]
10+
branches: [main, v2]
1111

1212
concurrency:
1313
# For PRs, use the ref (branch) in the concurrency group so that new pushes cancel any old runs.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# [beachball](https://microsoft.github.io/beachball/) monorepo
22

33
the sunniest version bumping tool - see [`packages/beachball`](./packages/beachball) for details
4+
5+
## `v2` branch
6+
7+
This is the maintenance branch for `beachball` v2.

beachball.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/** @type {Partial<import('./packages/beachball/src/types/BeachballOptions').RepoOptions>}*/
33
const config = {
44
access: 'public',
5-
branch: 'main',
5+
branch: 'v2',
66
commit: false,
77
disallowedChangeTypes: ['major'],
88
groupChanges: true,

0 commit comments

Comments
 (0)