Skip to content

Commit

Permalink
feat(semantic-release): prevent duplicate release comments on old PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
bent10 committed Aug 29, 2024
1 parent 9bf8be7 commit 31080dc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ module.exports = {
'chore(release): ${nextRelease.version} \n\n${nextRelease.notes}'
}
],
'@semantic-release/github',
[
'@semantic-release/github',
{
successComment: false,
failComment: false
}
],
'@semantic-release/npm'
]
}
8 changes: 7 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ export default {
'chore(release): ${nextRelease.version} \n\n${nextRelease.notes}'
}
],
'@semantic-release/github',
[
'@semantic-release/github',
{
successComment: false,
failComment: false
}
],
'@semantic-release/npm'
]
}

0 comments on commit 31080dc

Please sign in to comment.