Skip to content

Commit 42fa51a

Browse files
committed
chore: temporarily disable pr comments (prevent spam)
1 parent 704b6ee commit 42fa51a

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

scripts/release.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ const getConfig = ({ gitBranchName }) => {
3131
};
3232

3333
// 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-
}
34+
// if ( ! ["alpha", "hotfix", "release"].includes(branchType) ) {
35+
// Temporarily disable comments for all branches to prevent spam.
36+
githubConfig.successComment = false;
37+
githubConfig.failComment = false;
38+
// }
3839

3940
// Only publish alpha and release branches to NPM.
4041
const shouldPublishOnNPM = Boolean( process.env.NPM_TOKEN ) && ["alpha", "release"].includes(branchType);

0 commit comments

Comments
 (0)