Move Dependabot day to Wednesday and ignore major upgrades#418
Open
amishas157 wants to merge 1 commit intomasterfrom
Open
Move Dependabot day to Wednesday and ignore major upgrades#418amishas157 wants to merge 1 commit intomasterfrom
amishas157 wants to merge 1 commit intomasterfrom
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.
There was a problem hiding this comment.
Pull request overview
Updates the repository’s Dependabot configuration to better align dependency update timing with the work week and to reduce CI-noisy PRs caused by major-version bumps that frequently fail due to transitive constraints.
Changes:
- Moved the weekly Dependabot schedule from Sunday to Wednesday (02:00) for all configured ecosystems.
- Added a global ignore rule to suppress
semver-majorupdates for all dependencies across all ecosystems. - Kept existing grouping behavior for Go modules, GitHub Actions, and Docker updates.
💡 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