Move Dependabot day to Wednesday and ignore major upgrades - #238
Open
amishas157 wants to merge 1 commit into
Open
Move Dependabot day to Wednesday and ignore major upgrades#238amishas157 wants to merge 1 commit into
amishas157 wants to merge 1 commit into
Conversation
- schedule.day: sunday -> wednesday across all updates entries - Add ignore rule (update-types: ["version-update:semver-major"]) so Dependabot stops opening major-version PRs that historically failed CI due to transitive constraints.
Contributor
There was a problem hiding this comment.
Pull request overview
Updates Dependabot configuration to reduce weekend PR churn and avoid disruptive major-version upgrade PRs that frequently fail CI due to transitive constraints.
Changes:
- Moved the weekly Dependabot schedule from Sunday to Wednesday.
- Added
ignorerules to skip semver-major updates for all dependencies across update entries. - Removed the now-redundant “major” update group (since majors are ignored).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Two small changes to
.github/dependabot.yml:ignore: [{dependency-name: "*", update-types: [version-update:semver-major]}]on everyupdatesentry. Major bumps were repeatedly creating PRs that couldn't pass CI due to transitive constraints (e.g.apache-airflow-providers-cncf-kubernetes 10.16.1requiring cryptography ≥44 vsgcloud-aio-authcapping at <42;click 8.3.xcapped bysqlfluff 3.5.0). Major upgrades will be done manually when the surrounding deps can absorb them.For the dbt/airflow repos that previously had a separate
majorgroup entry, that group is now redundant and removed.Test plan