Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f49328b

Browse files
authored
chore: fix yaml file config error (#3306)
1 parent 9614bfe commit f49328b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/dependabot.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ updates:
3535
prefix: "chore"
3636
labels: []
3737
ignore:
38-
update-types:
39-
- version-update:semver-patch
38+
# Ignore patch updates for all dependencies
39+
- dependency-name: "*"
40+
update-types:
41+
- version-update:semver-patch
4042

4143
- package-ecosystem: "npm"
4244
directory: "/site/"
@@ -48,12 +50,15 @@ updates:
4850
prefix: "chore"
4951
labels: []
5052
ignore:
53+
# Ignore patch updates for all dependencies
54+
- dependency-name: "*"
55+
update-types:
56+
- version-update:semver-patch
5157
# Ignore major updates to Node.js types, because they need to
5258
# correspond to the Node.js engine version
5359
- dependency-name: "@types/node"
5460
update-types:
5561
- version-update:semver-major
56-
- version-update:semver-patch
5762

5863
- package-ecosystem: "terraform"
5964
directory: "/examples/templates"

0 commit comments

Comments
 (0)