Skip to content

Commit 855b273

Browse files
committed
fix(deps): exclude infra/sh/ from docker-compose fileMatch
The broad infra/*.yaml pattern was matching Ansible inventory, group_vars, and molecule configs as docker-compose files. Use a negative lookahead to exclude infra/sh/ (Ansible/Terraform).
1 parent a9c92be commit 855b273

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/renovate.json5

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,11 @@
208208
ignorePaths: ["**/.cursor/skills/**"],
209209
// Extend docker-compose file matching to include compose fragments under infra/
210210
// Default pattern only matches compose*.y{a,}ml and docker-compose*.y{a,}ml
211+
// Exclude infra/sh/ (Ansible YAML, not compose)
211212
"docker-compose": {
212213
fileMatch: [
213-
"(^|/)infra/.+\\.ya?ml$",
214+
"(^|/)infra/(?!sh/).+\\.ya?ml$",
215+
"(^|/)infra/[^/]+\\.ya?ml$",
214216
],
215217
},
216218
// Use platform-native automerge (GitHub/GitLab built-in automerge)

0 commit comments

Comments
 (0)