File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments