Skip to content

Commit c5fd323

Browse files
ci: enable releasing beta releases from the next branch (#307)
1 parent aa015b7 commit c5fd323

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/labels.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,6 @@
108108
- name: "Status: Released"
109109
color: c2e0c6
110110
description: "It's now live."
111+
- name: "Status: Beta Released"
112+
color: fef2c0
113+
description: "It's now live."

.releaserc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
branches:
22
- master
3+
- name: next
4+
channel: next
5+
prerelease: beta
36
plugins:
47
- "@semantic-release/commit-analyzer"
58
- "@semantic-release/release-notes-generator"
@@ -11,4 +14,4 @@ plugins:
1114
- "@semantic-release/npm"
1215
- - "@semantic-release/github"
1316
- releasedLabels:
14-
- "Status: Released"
17+
- "<%= nextRelease.channel === 'next' ? 'Status: Beta Released' : 'Status: Released' %>"

0 commit comments

Comments
 (0)