...
1# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2
3version: 2
4updates:
5 - package-ecosystem: "gomod"
6 directory: "/"
7 schedule:
8 interval: "weekly"
9 day: "sunday"
10 # ignore patch version increment updates (will not affect security updates)
11 ignore:
12 - dependency-name: "*"
13 update-types: ["version-update:semver-patch"]
14
15 - package-ecosystem: "gomod"
16 directory: "/test"
17 schedule:
18 interval: "weekly"
19 day: "sunday"
20 # ignore patch version increment updates (will not affect security updates)
21 ignore:
22 - dependency-name: "*"
23 update-types: ["version-update:semver-patch"]
24
25 - package-ecosystem: "github-actions"
26 directory: "/"
27 schedule:
28 interval: "daily"
View as plain text