-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Dependabot PRs from release notes? #2031
Comments
I had the same problem. I ended up entirely omitting dependabot's commits with const omitCommitsOptions: IOmitCommitsPluginOptions = {
subject: [
'Merge branch',
'chore:',
'chore(',
'ci(',
'ci:',
'test:',
'test(',
'fix(ci):',
],
}
export default function config(): AutoRc {
return {
baseBranch: 'stable',
prereleaseBranches: ['develop'],
plugins: [
['npm', npmOptions],
['conventional-commits', conventionalCommitsOptions],
'first-time-contributor',
'released',
['all-contributors', allContributorsOptions],
['omit-commits', omitCommitsOptions],
],
}
} |
Thanks for sharing this example @hasparus - on the topic of muting Dependabot, we're also avoiding building canary commits for Dependabot's PRs using github actions syntax to avoid running shipit on branches that matches its naming pattern. Not sure if there's a way to ignore it from within |
I do see there's the |
@mattfelten could you post a log with |
Dependabot recently started barraging my project with PRs, and while useful, it's making release notes quite noisy. I can't seem to figure out how to remove dependabot PRs though.
Using
omit-release-notes
seems like it should work but it doesn't. Is there something I'm missing about how this works?The text was updated successfully, but these errors were encountered: