Skip to content

Commit 352d332

Browse files
authored
feat: add release branches config to release-please workflow (#187)
1 parent d281908 commit 352d332

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

lib/content/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ module.exports = {
9696
workspaceModule,
9797
windowsCI: true,
9898
branches: ['main', 'latest'],
99+
releaseBranches: [],
99100
defaultBranch: 'main',
100101
// Escape hatch since we write a release test file but the
101102
// CLI has a very custom one we dont want to overwrite. This

lib/content/release-please.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
{{#each branches}}
77
- {{.}}
88
{{/each}}
9+
{{#each releaseBranches}}
10+
- {{.}}
11+
{{/each}}
912

1013
permissions:
1114
contents: write

0 commit comments

Comments
 (0)