Skip to content

Commit

Permalink
Ignore patch updates in Dependabot
Browse files Browse the repository at this point in the history
We get a lot of noise from Dependabot on a weekly basis. This should help a bit.

See https://github.blog/changelog/2021-05-21-dependabot-version-updates-can-now-ignore-major-minor-patch-releases/
  • Loading branch information
hasparus committed Jun 10, 2021
1 parent 08ecc2d commit af482ed
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions dependabot.yml
@@ -1,9 +1,11 @@
# see https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: "monthly"
interval: 'monthly'
ignore:
- dependency-name: "@codechecks/client"
- dependency-name: '@codechecks/client'
- dependency-name: '*'
update-types: ['version-update:semver-patch']

2 comments on commit af482ed

@vercel
Copy link

@vercel vercel bot commented on af482ed Jun 10, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lachlanjc
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, thank you!

Please sign in to comment.