-
Notifications
You must be signed in to change notification settings - Fork 1
/
.releaserc.yml
36 lines (31 loc) · 939 Bytes
/
.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
---
# `semantic-release` configuration and plugins setup
# https://github.com/semantic-release/semantic-release
branches: main
tagFormat: '${version}'
plugins:
- - '@semantic-release/commit-analyzer'
- releaseRules:
- type: ci
release: patch
- type: build
release: patch
- type: refactor
release: patch
- - '@semantic-release/release-notes-generator'
- preset: conventionalcommits
parserOpts:
noteKeywords:
- BREAKING CHANGE
- BREAKING CHANGES
- BREAKING
- - '@semantic-release/changelog'
- changelogFile: CHANGELOG.md
# `@semantic-release/npm` will publish to https://npm.pkg.github.com/
- - '@semantic-release/npm'
- - '@semantic-release/github'
- - '@semantic-release/git'
- assets:
- package.json
- CHANGELOG.md
message: 'chore(release): publish ${nextRelease.version} [skip ci]'