Skip to content

Commit 32c00cb

Browse files
jszwedkoclaude
andcommitted
chore(ci): unignore test/correctness so the agent-pin manager runs
config:recommended (via :ignoreModulesAndTests) ignores **/test/**, and ignored paths are dropped before any manager extracts from them -- so the custom Agent-pin manager never saw test/correctness/cases/*/config.yaml and the OTLP baseline image pins would still drift (caught in review). Override ignorePaths to reproduce the inherited defaults minus **/test/**, and explicitly re-ignore test/antithesis/** (the only test/ files built-in managers recognize: a Dockerfile and a docker-compose) so behavior there is unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 8925ab3 commit 32c00cb

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

renovate.json5

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,25 @@
5050
// weekly non-major group)
5151
"osvVulnerabilityAlerts": true,
5252

53+
// Paths Renovate skips entirely, before any manager (built-in or custom) extracts from them.
54+
//
55+
// This overrides the list inherited from `config:recommended` (via `:ignoreModulesAndTests`).
56+
// We reproduce its defaults but drop the broad `**/test/**` entry: that pattern would otherwise
57+
// hide test/correctness/cases/*/config.yaml from the custom Agent-pin manager below, so the
58+
// OTLP baseline image pins would silently keep drifting. The only dependency files under test/
59+
// that built-in managers recognize live in test/antithesis/deploy (a Dockerfile and a
60+
// docker-compose), which we keep ignoring here to preserve current behavior.
61+
"ignorePaths": [
62+
"**/node_modules/**",
63+
"**/bower_components/**",
64+
"**/vendor/**",
65+
"**/examples/**",
66+
"**/__tests__/**",
67+
"**/tests/**",
68+
"**/__fixtures__/**",
69+
"test/antithesis/**"
70+
],
71+
5372
// Package-manager-specific rules.
5473
"packageRules": [
5574
// Use Cargo's semver interpretation for all Cargo dependencies. Cargo

0 commit comments

Comments
 (0)