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 ddffaac commit f3cd983Copy full SHA for f3cd983
src/schemas/json/semantic-release.json
@@ -101,6 +101,14 @@
101
},
102
{
103
"type": "array"
104
+ },
105
+ {
106
+ "type": "object",
107
+ "required": ["path"],
108
+ "properties": {
109
+ "path": { "type": "string" }
110
111
+ "additionalProperties": true
112
}
113
]
114
src/test/semantic-release/example2.yaml
@@ -0,0 +1,10 @@
1
+# yaml-language-server: $schema=../../schemas/json/semantic-release.json
2
+plugins:
3
+ - path: '@semantic-release/commit-analyzer'
4
+ preset: conventionalcommits
5
+ - '@semantic-release/release-notes-generator'
6
+ - '@semantic-release/gitlab'
7
+ - path: 'semantic-release-slack-bot'
8
+ notifyOnSuccess: true
9
+ notifyOnFail: true
10
+ markdownReleaseNotes: true
0 commit comments