Skip to content

Commit 7bb7d3c

Browse files
committed
invert update types since attempt with ignoring major updates did not work
1 parent d9e5396 commit 7bb7d3c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ updates:
99
directory: "/" # Location of package manifests
1010
schedule:
1111
interval: "daily" # scan every day
12-
ignore:
12+
# Allow only patch and minor updates, implicitly ignoring major updates
13+
allow:
1314
- dependency-name: "*"
14-
update-types: ["version-update:semver-major"]
15+
update-types: [ "patch", "minor" ]

0 commit comments

Comments
 (0)