Skip to content

Commit 8165053

Browse files
author
Kris Coleman
authored
refactor(dependabot): split Helm config into replicated-sdk and other deps (#135)
Separate the single Dependabot entry into two: one that tracks only the replicated dependency weekly (via allow), and another that tracks all remaining Helm dependencies monthly (via ignore + wildcard group). Both share the same directories list using a YAML anchor.
1 parent 068c4f1 commit 8165053

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
#
66
version: 2
77
updates:
8+
# Track the Replicated SDK on a weekly cadence
89
- package-ecosystem: "helm"
9-
directories:
10+
directories: &helm-dirs
1011
- "/applications/fake-services/app"
1112
- "/applications/mlflow/charts/mlflow"
1213
- "/applications/n8n/charts/n8n"
@@ -16,7 +17,21 @@ updates:
1617
- "/applications/wg-easy/charts/wg-easy"
1718
schedule:
1819
interval: "weekly"
20+
allow:
21+
- dependency-name: "replicated"
1922
groups:
2023
replicated-sdk:
2124
patterns:
2225
- "replicated"
26+
27+
# Track all other Helm dependencies on a monthly cadence
28+
- package-ecosystem: "helm"
29+
directories: *helm-dirs
30+
schedule:
31+
interval: "monthly"
32+
ignore:
33+
- dependency-name: "replicated"
34+
groups:
35+
all-other-deps:
36+
patterns:
37+
- "*"

0 commit comments

Comments
 (0)