Skip to content
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

Exclude repo-config from dependabot grouping #383

Merged
merged 1 commit into from
Mar 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,25 @@ updates:
# Major updates are still managed, but they'll create one PR per
# dependency, as major updates are expected to be breaking, it is better to
# manage them individually.
# We exclude the `frequenz-repo-config` package from grouping as this
# dependency is still under development (at branch v0.x.x), so minor
# changes typically introduce breaking changes (and patch updates can
# potentially too according to semver).
groups:
required:
dependency-type: "production"
update-types:
- "minor"
- "patch"
exclude-patterns:
- "frequenz-repo-config"
optional:
dependency-type: "development"
update-types:
- "minor"
- "patch"
exclude-patterns:
- "frequenz-repo-config"

- package-ecosystem: "github-actions"
directory: "/"
Expand Down