-
Notifications
You must be signed in to change notification settings - Fork 4
ci: sanitize Dependabot config #143
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,82 @@ | ||
| # Dependabot configuration — kept identical in shape across all four solver repos. | ||
| # Only the schedule time, ecosystem list, and 1.x section differ per repo. | ||
| # | ||
| # WHY THIS LOOKS THE WAY IT DOES (read before editing): | ||
| # | ||
| # * Dependencies are split by SemVer level into separate PRs to match the merge | ||
| # workflow: patch = usually safe / merge on sight, minor = usually needs work, | ||
| # major = needs attention. Quarkus and Spring get their OWN PRs (their bumps | ||
| # are easier to review as a unit) and are themselves split patch-vs-rest, so a | ||
| # safe Quarkus/Spring patch stays merge-on-sight instead of being held hostage | ||
| # by a minor/major bump in the same PR. | ||
| # | ||
| # * Uses the regular `groups` feature so each dependency lands in exactly ONE PR | ||
| # (its highest bump, routed to the first matching group). PRs are per-ecosystem | ||
| # (maven PRs are separate from github-actions PRs). | ||
| # | ||
| # * GROUP ORDER MATTERS — Dependabot assigns a dep to the FIRST matching group, so | ||
| # quarkus/spring are listed before the major/minor/patch catch-alls. | ||
| # | ||
| # * Commit prefix is plain "deps" for ALL groups — Dependabot has no per-group | ||
| # commit-message. The level/identity shows in the PR title and branch name, e.g. | ||
| # "deps: bump the patch group ..." / branch dependabot/maven/patch-<hash>. | ||
| # | ||
| # * Schedule: Monday 01:45 Europe/Berlin (= 1:45am CEST in summer), staggered +15 min | ||
| # per repo (solver 01:00, enterprise 01:15, quickstarts 01:30, benchmarks 01:45). | ||
| # | ||
| # * Quarkus/Spring patterns drop the ":" so the wildcard spans sub-groupIds | ||
| # (io.quarkus*, io.quarkiverse*, ...). Re-scan pom.xml/*.gradle if new families appear. | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: maven | ||
| directory: "/" | ||
| schedule: | ||
| interval: weekly | ||
| time: '05:00' # Otherwise it picks a random time. | ||
| day: monday | ||
| time: "01:45" | ||
| timezone: "Europe/Berlin" | ||
| open-pull-requests-limit: 10 | ||
| target-branch: "main" | ||
| labels: ["dependencies"] | ||
| commit-message: | ||
| prefix: "deps: " | ||
| - package-ecosystem: "github-actions" | ||
| prefix: "deps" | ||
| groups: | ||
| # Identity groups first — first-match-wins keeps these out of the semver buckets. | ||
| # Each family is split patch-vs-rest: the *-patch group (listed first) grabs | ||
| # patches for merge-on-sight; the rest-group (no update-types) catches that | ||
| # family's minor/major (and any non-semver bump). | ||
| quarkus-patch: | ||
| patterns: ["io.quarkus*", "io.quarkiverse*"] | ||
| update-types: ["patch"] | ||
| quarkus: | ||
| patterns: ["io.quarkus*", "io.quarkiverse*"] | ||
| spring-patch: | ||
| patterns: ["org.springframework*", "org.springdoc*", "io.spring*"] | ||
| update-types: ["patch"] | ||
| spring: | ||
| patterns: ["org.springframework*", "org.springdoc*", "io.spring*"] | ||
| # Everything else, split by SemVer level into its own PR. | ||
| major: | ||
| patterns: ["*"] | ||
| update-types: ["major"] | ||
| minor: | ||
| patterns: ["*"] | ||
| update-types: ["minor"] | ||
| patch: | ||
| patterns: ["*"] | ||
| update-types: ["patch"] | ||
|
|
||
| - package-ecosystem: github-actions | ||
| directory: "/" | ||
| schedule: | ||
| interval: weekly | ||
| time: '05:00' # Otherwise it picks a random time. | ||
| day: monday | ||
| time: "01:45" | ||
| timezone: "Europe/Berlin" | ||
| open-pull-requests-limit: 10 | ||
| labels: ["dependencies"] | ||
| commit-message: | ||
| prefix: "deps" | ||
| groups: | ||
| # Actions are NOT semver-split — one PR for all action updates (minimize PRs). | ||
| actions: | ||
| patterns: ["*"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.