You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {String} pluginConfig.config Requireable npm package with a custom conventional-changelog preset
20
20
* @param {String|Array} pluginConfig.releaseRules A `String` to load an external module or an `Array` of rules.
21
21
* @param {Boolean} pluginConfig.disableDefaultReleaseRules A `Boolean` that will prevent the default release rules to be used if a rule is not matched.
22
+
* @param {Boolean} pluginConfig.defaultToPatchRelease A `Boolean` to return a patch release when no release type is determined.
22
23
* @param {Object} pluginConfig.parserOpts Additional `conventional-changelog-parser` options that will overwrite ones loaded by `preset` or `config`.
23
24
* @param {Object} context The semantic-release context.
24
25
* @param {Array<Object>} context.commits The commits to analyze.
@@ -86,5 +87,10 @@ export async function analyzeCommits(pluginConfig, context) {
86
87
87
88
logger.log("Analysis of %s commits complete: %s release",commits.length,releaseType||"no");
0 commit comments