-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
.releaserc.yml
54 lines (53 loc) · 1.54 KB
/
.releaserc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
branches:
- main
- name: next
channel: next
prerelease: next
plugins:
- - "@semantic-release/commit-analyzer"
- preset: angular
parserOpts:
headerPattern: '^(\w*)(?:\((.*)\))?!?: (.*)$'
breakingHeaderPattern: '^(\w*)(?:\((.*)\))?!: (.*)$'
releaseRules:
- breaking: true
release: major
- revert: true
release: patch
- type: feat
release: minor
- type: fix
release: patch
- type: perf
release: patch
- type: build
scope: deps
release: patch
- type: build
scope: peer-deps
release: patch
- type: build
scope: release-patch
release: patch
- type: build
scope: release-minor
release: minor
- type: build
scope: release-major
release: major
- - "@semantic-release/release-notes-generator"
- preset: angular
parserOpts:
headerPattern: '^(\w*)(?:\((.*)\))?!?: (.*)$'
breakingHeaderPattern: '^(\w*)(?:\((.*)\))?!: (.*)$'
- - "@semantic-release/changelog"
- changelogTitle: "# Changelog
All notable changes to this project will be documented in this file. Dates are displayed in UTC."
- - "@semantic-release/git"
- assets:
- CHANGELOG.md
- "@semantic-release/npm"
- "@sebbo2002/semantic-release-jsr"
- - "@semantic-release/github"
- releasedLabels:
- "<%= nextRelease.channel === 'next' ? 'Status: Released on Next' : 'Status: Released' %>"