-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.yaml
52 lines (45 loc) · 1.84 KB
/
.releaserc.yaml
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
---
branches:
- main
- { name: next, prerelease: true }
tagFormat: v${version}
plugins:
- - "@semantic-release/commit-analyzer"
- preset: angular
releaseRules:
- { breaking: true, release: major }
- { type: feat, release: minor }
- { type: refactor, scope: "core*", release: minor }
- { revert: true, release: patch }
- { type: deps, release: patch }
- { type: fix, release: patch }
- { type: perf, release: patch }
- { type: refactor, release: patch }
- { type: docs, release: false }
- { scope: no-release, release: false }
- - "@semantic-release/release-notes-generator"
- preset: angular
- - "@semantic-release/npm"
- npmPublish: false
- - "@semantic-release/github"
- addReleases: bottom
assignees: trevor-anderson
successComment: false
failTitle: false
# The options set to `false` above ensure the github plugin does not
# attempt to use the GitHub API in the "success" step, which currently
# throws every single time due to purported rate limiting issues with the
# GitHub API, even though local usage does not result in such errors. The
# problem is suspected to be caused by how the plugin uses Octokit's `retry`.
# See issues:
# - https://github.com/semantic-release/semantic-release/issues/2204
# - https://github.com/semantic-release/semantic-release/issues/843
- - "@semantic-release/changelog"
- changelogFile: "CHANGELOG.md"
changelogTitle: |-
# Changelog
All notable changes to this project will be documented in this file.
---
- - "@semantic-release/git"
- assets: ["CHANGELOG.md", "package.json", "package-lock.json", "npm-shrinkwrap.json"]
message: "chore(release): version ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"