mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 00:19:00 +03:00
Dependabot: ignore patch updates (#304)
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
This commit is contained in:
parent
3029089385
commit
2502beb5df
1 changed files with 8 additions and 0 deletions
8
.github/dependabot.yml
vendored
8
.github/dependabot.yml
vendored
|
@ -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
|
||||
|
@ -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" ]
|
||||
|
|
Loading…
Reference in a new issue