Skip to content

Commit

Permalink
Also transfer tagMatch to release plugins (fixes #885)
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Apr 9, 2022
1 parent 56f1ec7 commit 0e0ad33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugin/GitRelease.js
Expand Up @@ -10,7 +10,7 @@ class GitRelease extends GitBase {
getInitialOptions(options) {
const baseOptions = super.getInitialOptions(...arguments);
const git = options.git || defaultConfig.git;
const gitOptions = _.pick(git, ['tagName', 'pushRepo', 'changelog']);
const gitOptions = _.pick(git, ['tagName', 'tagMatch', 'pushRepo', 'changelog']);
return _.defaults(baseOptions, gitOptions);
}

Expand Down

0 comments on commit 0e0ad33

Please sign in to comment.