We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 704b6ee commit 42fa51aCopy full SHA for 42fa51a
1 file changed
scripts/release.js
@@ -31,10 +31,11 @@ const getConfig = ({ gitBranchName }) => {
31
};
32
33
// Only post GH PR comments for alpha, hotfix/*, and release branches.
34
- if ( ! ["alpha", "hotfix", "release"].includes(branchType) ) {
35
- githubConfig.successComment = false;
36
- githubConfig.failComment = false;
37
- }
+ // if ( ! ["alpha", "hotfix", "release"].includes(branchType) ) {
+ // Temporarily disable comments for all branches to prevent spam.
+ githubConfig.successComment = false;
+ githubConfig.failComment = false;
38
+ // }
39
40
// Only publish alpha and release branches to NPM.
41
const shouldPublishOnNPM = Boolean( process.env.NPM_TOKEN ) && ["alpha", "release"].includes(branchType);
0 commit comments