Skip to content

Commit deb5e7b

Browse files
rdimitrovclaude
andauthored
chore(deps): reduce dependabot frequency from daily to weekly (#1284)
## Summary - Dependency update PRs were arriving daily across gomod (root + `/deploy`), github-actions, and docker — creating significant review noise. - Switch all four update entries in `.github/dependabot.yml` from `interval: daily` to `interval: weekly` so they batch on a weekly cadence (Dependabot defaults to Mondays). ## Test plan - [ ] Confirm `.github/dependabot.yml` parses correctly (Dependabot will report a config error on the repo if not) - [ ] Observe that new dependency PRs stop appearing daily after merge 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 4819463 commit deb5e7b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/dependabot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@ updates:
77
patterns:
88
- "go.opentelemetry.io/*"
99
schedule:
10-
interval: daily
10+
interval: weekly
1111
- package-ecosystem: gomod
1212
directory: /deploy
1313
groups:
1414
opentelemetry:
1515
patterns:
1616
- "go.opentelemetry.io/*"
1717
schedule:
18-
interval: daily
18+
interval: weekly
1919
- package-ecosystem: github-actions
2020
directory: /
2121
groups:
2222
actions:
2323
patterns:
2424
- "*"
2525
schedule:
26-
interval: daily
26+
interval: weekly
2727
- package-ecosystem: "docker"
2828
directory: "/"
2929
schedule:
30-
interval: "daily"
30+
interval: "weekly"

0 commit comments

Comments
 (0)