Skip to content

Commit

Permalink
dependabot: second attempt to exclude major updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jul 15, 2024
1 parent 76a0832 commit 08290a9
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,20 @@ updates:
- package-ecosystem: "composer" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"
allow:
# Allow both direct and indirect updates for all packages
- dependency-type: "all"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
groups:
dev-dependencies:
production-dependencies:
dependency-type: "production"
exclude-patterns:
- "symfony/*"
development-dependencies:
dependency-type: "development"
update-types:
- "minor"
- "patch"
symfony:
patterns:
- "symfony/*"

0 comments on commit 08290a9

Please sign in to comment.