Skip to content

Commit d6eccb4

Browse files
authored
Merge pull request #617 from Decodetalkers/adddependabot
chore: add dependabot
2 parents 4c0d7de + ddfe530 commit d6eccb4

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/dependabot.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
# docs
7+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
8+
version: 2
9+
updates:
10+
- package-ecosystem: "gradle"
11+
directory: "/"
12+
schedule:
13+
interval: "weekly"
14+
# We release on Tuesdays and open dependabot PRs will rebase after the
15+
# version bump and thus consume unnecessary workers during release, thus
16+
# let's open new ones on Wednesday
17+
day: "wednesday"
18+
ignore:
19+
- dependency-name: "*"
20+
update-types: ["version-update:semver-patch"]
21+
groups:
22+
# Only update polars as a whole as there are many subcrates that need to
23+
# be updated at once. We explicitly depend on some of them, so batch their
24+
# updates to not take up dependabot PR slots with dysfunctional PRs
25+
polars:
26+
patterns:
27+
- "polars"
28+
- "polars-*"
29+
- package-ecosystem: "github-actions"
30+
directory: "/"
31+
schedule:
32+
interval: "weekly"
33+
day: "wednesday"

0 commit comments

Comments
 (0)