Skip to content

Commit

Permalink
Dependabot: ignore patch updates (#304)
Browse files Browse the repository at this point in the history
This PR *should* disable creating Dependabot PRs for patch updates.
These updates often don't contain significant changes and only clutter
the PR feed in addition to taking the maintainers' time
  • Loading branch information
Octol1ttle authored May 13, 2024
1 parent 3029089 commit 2502beb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ updates:
labels:
- "type: change"
- "area: build/ci"
# For all packages, ignore all patch updates
ignore:
- dependency-name: "*"
update-types: [ "version-update:semver-patch" ]

- package-ecosystem: "nuget" # See documentation for possible values
directory: "/" # Location of package manifests
Expand All @@ -30,3 +34,7 @@ updates:
remora:
patterns:
- "Remora.Discord.*"
# For all packages, ignore all patch updates
ignore:
- dependency-name: "*"
update-types: [ "version-update:semver-patch" ]

0 comments on commit 2502beb

Please sign in to comment.