-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy path.releaserc.yml
More file actions
82 lines (79 loc) · 1.89 KB
/
.releaserc.yml
File metadata and controls
82 lines (79 loc) · 1.89 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
branches:
- master
- name: dev
prerelease: beta
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- - "@semantic-release/changelog"
- changelogFile: CHANGELOG.md
- - "@semantic-release/npm"
- npmPublish: false
- - "@semantic-release/exec"
- prepareCmd: "npm run build"
- - "@semantic-release/git"
- assets:
- CHANGELOG.md
- package.json
- package-lock.json
- custom_components/browser_mod/manifest.json
- custom_components/browser_mod/browser_mod.js
- custom_components/browser_mod/browser_mod_panel.js
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
- - "@semantic-release/github"
preset: conventionalcommits
presetConfig:
types:
- type: feat
section: ⭐ New Features
- type: fix
section: 🐞 Bug Fixes
- type: perf
section: ⚡ Performance Improvements
- type: docs
section: 📔 Documentation
- type: deps
section: 📦 Dependency Upgrades
- type: chore
section: Chores
hidden: true
- type: refactor
section: ⚙️ Miscellaneous
- type: test
section: ⚙️ Miscellaneous
- type: build
section: ⚙️ Miscellaneous
- type: ci
section: ⚙️ Miscellaneous
- type: revert
section: 🐞 Bug Fixes
- type: style
section: ⚙️ Miscellaneous
releaseRules:
- type: feat
scope: "major"
release: major
- type: feat
release: minor
- type: fix
release: patch
- type: docs
release: patch
- type: deps
release: patch
- type: perf
release: minor
- type: refactor
release: patch
- type: chore
release: false
- type: test
release: false
- type: style
release: patch
- type: ci
release: false
- type: build
release: false
- breaking: true
release: major