fix: remove the github plugin from default success and fail hooks

This commit is contained in:
Pierre Vanduynslager
2018-02-13 16:06:30 -05:00
parent 1b3c51d624
commit 04f3061bed
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -47,13 +47,13 @@ module.exports = {
},
},
success: {
default: ['@semantic-release/github'],
default: false,
config: {
validator: conf => !conf || (isArray(conf) ? conf : [conf]).every(conf => validatePluginConfig(conf)),
},
},
fail: {
default: ['@semantic-release/github'],
default: false,
config: {
validator: conf => !conf || (isArray(conf) ? conf : [conf]).every(conf => validatePluginConfig(conf)),
},