ci: exempt internal devantler-tech deps from Dependabot cooldown#87
Merged
Conversation
✅MegaLinter analysis: Success
Notices📣 MegaLinter 9.5.0 is out! Discover the new features and security recommendations in the release announcement. (Skip this info by defining See detailed reports in MegaLinter artifacts
|
There was a problem hiding this comment.
Pull request overview
Updates Dependabot cooldown configuration to exempt internal devantler-tech dependencies from waiting periods, so first-party GitHub Actions/workflows and Go modules can be updated immediately while third-party deps still respect cooldown.
Changes:
- Add a cooldown
excludeforgithub.com/devantler-tech/*in thegomodupdates config. - Add a cooldown
excludefordevantler-tech/*in thegithub-actionsupdates config.
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.

What
Adds
exclude: ["devantler-tech/*"]to the Dependabotgithub-actionscooldown. Per Dependabot'sWildcardMatcher,*compiles to.*(anchored, matches across/), so it covers bothdevantler-tech/actionsand reusable-workflow refs likedevantler-tech/reusable-workflows/.github/workflows/<file>.yaml.Also adds
exclude: ["github.com/devantler-tech/*"]to thegomodcooldown (future-proofs internal Go modules).Why
We trust our own code (CI is the gate), so internal
devantler-tech/*bumps shouldn't wait in cooldown like third-party deps — they should land immediately.Companion to devantler-tech/monorepo#1782 (portfolio-wide pass across every repo's Dependabot/Renovate config).
🤖 Generated with Claude Code