summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-12-09 17:41:51 +0000
committerGitHub <noreply@github.com>2023-12-09 17:41:51 +0000
commitf35ef7459b647714d1e6872b8a820f84a8100b0d (patch)
treed9a71ef0cb939bee116f09616249a6e670406146 /.github
parent70a283a194040180a97b17ec64badfd14db7c6ce (diff)
chore: run dependabot weekly, not daily (#1423)
* chore: run dependabot weekly, not daily * group it all
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index da1498c48..50d291298 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -8,8 +8,12 @@ updates:
- package-ecosystem: "cargo" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
- interval: "daily"
+ interval: "weekly"
+ groups:
+ cargo:
+ # Just group everything. I'll see how this goes, but one big PR might be nicer.
+ - '*'
- package-ecosystem: "docker" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
- interval: "daily"
+ interval: "weekly"