You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# note dependabot does not support scanning Helm dependencies.
26
18
27
19
updates:
28
-
- package-ecosystem: "gradle"#Replace gradle with any package ecosystem you want Dependabot to scan, such as npm, maven, or pip.
29
-
# Important: If you include any package-ecosystem that does not exist in your repository, Dependabot will fail to run.
30
-
31
-
# Define the directories where Dependabot should scan for version updates. Use "/" to check the root directory or explicitly define the path, e.g., "/tools/*".
32
-
# To scan all directories, use the configuration below.
20
+
- package-ecosystem: "gradle"
33
21
directories:
34
22
- "**/*"
35
-
registries: "*"#Includes both private and publicly available ones.
23
+
registries: "*"
36
24
schedule:
37
25
interval: "weekly"
38
26
day: "saturday"
39
-
#reviewers: #you can enable the reviewers who would like to review the dependabot PRs and merge them with the main/master branch
40
-
# The groups section allows combining multiple dependency updates into a single pull request based on matching patterns.
41
27
groups:
42
28
major:
43
29
update-types:
@@ -50,9 +36,8 @@ updates:
50
36
- "patch"
51
37
patterns:
52
38
- "*"
53
-
#To customize the Dependabot PR title, use the option below. Comment out if it is not required.
39
+
ignore:
40
+
- dependency-name: "org.jetbrains.compose:*"
41
+
versions: [ ">=1.11.0" ] # compose-multiplatform 1.11.0+ does not support iosX64 target
54
42
commit-message:
55
43
prefix: "Dependabot - [Gradle] -"
56
-
#similarly define for other package-ecosystem, like docker, maven, npm, etc.
0 commit comments