Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit fcf87d5

Browse files
authored
chore: ignore minor versions for official actions (#270)
* Ignore minor versions for actions/cache and actions/checkout, since GitHub always replaces the v2 tag with the latest minor release * Remove assignee setting, since it doesn't seem to work
1 parent b8c85ea commit fcf87d5

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,19 @@ updates:
66
interval: "daily"
77
time: "11:00"
88
open-pull-requests-limit: 10
9-
assignees:
10-
- "dependabot"
9+
ignore:
10+
# GitHub always delivers the latest versions for each major
11+
# release tag, so ignore minor version tags
12+
- dependency-name: "actions/cache"
13+
versions:
14+
- 2.x
15+
- dependency-name: "actions/checkout"
16+
versions:
17+
- 2.x
1118

1219
- package-ecosystem: gomod
1320
directory: "/"
1421
schedule:
1522
interval: daily
1623
time: "11:00"
1724
open-pull-requests-limit: 10
18-
assignees:
19-
- "dependabot"

0 commit comments

Comments
 (0)