We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79447bc commit e3f4b92Copy full SHA for e3f4b92
.github/workflows/semantic-release.yml
@@ -25,6 +25,7 @@ jobs:
25
with:
26
ci: ${{ github.ref == 'refs/heads/main' }}
27
extra_plugins: |
28
+ conventional-changelog-conventionalcommits
29
semantic-release-mirror-version
30
semantic-release-stack-upload
31
.releaserc.mjs
@@ -5,7 +5,15 @@ export default {
5
branches: ["main"],
6
tagFormat: "${version}",
7
plugins: [
8
- "@semantic-release/commit-analyzer",
+ [
9
+ "@semantic-release/commit-analyzer",
10
+ {
11
+ "preset": "conventionalcommits",
12
+ "releaseRules": [
13
+ { "type": "docs", "release": "patch" }
14
+ ]
15
+ }
16
+ ],
17
"@semantic-release/release-notes-generator",
18
[
19
"semantic-release-mirror-version",
0 commit comments