ci: suppress dependabot updates for test fixture manifests#422
Merged
ruromero merged 1 commit intoguacsec:mainfrom Apr 16, 2026
Merged
Conversation
exclude-paths only applies to version updates, not security updates,
causing noisy PRs for intentionally-pinned vulnerable deps in test
fixtures. Replace with targeted directories + ignore: {dependency-name: "*"}
to suppress both version and security update PRs.
Mirrors guacsec/trustify-da-javascript-client#477.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Strum355
approved these changes
Apr 16, 2026
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
Problem:
exclude-pathsindependabot.ymlonly applies to version updates, not security updates. This caused 8+ noisy PRs from dependabot trying to bump intentionally-pinned vulnerable deps in test fixture manifests undersrc/test/resources/tst_manifests/andsrc/test/resources/msc/.Solution: Add dedicated dependabot entries per ecosystem that target the test fixture directories with
ignore: [{dependency-name: "*"}]to suppress both version and security update PRs (ref). Theignoreoption supports security updates unlikeexclude-paths.Changes
directoriestargetingtst_manifests/maven/**+it/maven/**+ignore: *directory: "/"+exclude-pathswithdirectoriestargeting all JS test fixture dirs +ignore: *directoriespointing topip/**+it/pypi/**+ignore: *directoriespointing togolang/**,it/golang/**,msc/golang/**+ignore: *directoriespointing togradle-groovy/**,gradle-kotlin/**+it/equivalents +ignore: *directoriespointing tocargo/**+ignore: *Mirrors guacsec/trustify-da-javascript-client#477.
Test plan
🤖 Generated with Claude Code