7
7
"channel": "stage"
8
8
}
9
9
],
10
+ "plugins": [
11
+ "@semantic-release/commit-analyzer",
12
+ "@semantic-release/release-notes-generator",
13
+ "@semantic-release/changelog",
14
+ [
15
+ "@semantic-release/git",
16
+ {
17
+ "assets": [
18
+ "package.json",
19
+ "CHANGELOG.md"
20
+ ],
21
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
22
+ }
23
+ ],
24
+ "@semantic-release/github"
25
+ ],
10
26
"analyzeCommits": {
11
27
"preset": "conventionalcommits",
12
28
"parserOpts": {
13
29
"headerPattern": "^(\\[ISSUE-.*])?\\s?(\\w+):\\s(.*)$",
14
- "headerCorrespondence": ["scope", "type", "subject"]
30
+ "headerCorrespondence": [
31
+ "scope",
32
+ "type",
33
+ "subject"
34
+ ]
15
35
}
16
36
},
17
37
"generateNotes": {
18
38
"preset": "conventionalcommits",
19
39
"parserOpts": {
20
40
"headerPattern": "^(\\[ISSUE-.*])?\\s?(\\w+):\\s(.*)$",
21
- "headerCorrespondence": ["scope", "type", "subject"]
41
+ "headerCorrespondence": [
42
+ "scope",
43
+ "type",
44
+ "subject"
45
+ ]
22
46
},
23
47
"options": {
24
48
"preset": {
25
49
"name": "conventionalchangelog",
26
- "issuePrefixes": ["ISSUE-"],
50
+ "issuePrefixes": [
51
+ "ISSUE-"
52
+ ],
27
53
"issueUrlFormat": "https://github.com/aziontech/vulcan/issues/{id}"
28
54
}
29
55
}
30
- },
31
- "@semantic-release/git": {
32
- "assets": ["package.json"],
33
- "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
34
56
}
35
- }
57
+ }
0 commit comments