From 2427fc4579bf6ca0ed2519785d40a5fd24e11b6f Mon Sep 17 00:00:00 2001 From: Gabriel Duarte Date: Sun, 29 Mar 2020 13:59:49 +0200 Subject: [PATCH] chore: disable commenting on issues and pull requests on release Because of the monorepo structure, `semantic-release-monorepo` cannot determine which pull-requests and issues are supposed to be commented on each commit. More info on pmowrer/semantic-release-monorepo#51 --- release.config.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/release.config.js b/release.config.js index 775c23f6..8afac3f7 100644 --- a/release.config.js +++ b/release.config.js @@ -14,6 +14,12 @@ module.exports = { 'chore(release): ${nextRelease.gitTag} [skip ci]\n\n${nextRelease.notes}', }, ], - '@semantic-release/github', + [ + '@semantic-release/github', + { + successComment: false, + failComment: false, + }, + ], ], }