Skip to content

Commit 7d56fc5

Browse files
authored
fix: update Dependabot labels (#377)
Based on [Dependabot docs](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#labels--) we can specify the labels applied. Previously Dependabot was applying `major`, `minor', or `patch` labels based on the version of dependency updates. This was causing conflicts with our auto releasing. If those labels were present they were being applied to our releases. This is not what we want. We are chaning to just note the package type (i.e., go, github_actions, etc) and `dependencies`, in case we ever need to filter in the UI. Signed-off-by: jmeridth <[email protected]>
1 parent 3f52fe3 commit 7d56fc5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ updates:
77
interval: "weekly"
88
commit-message:
99
prefix: "chore(deps)"
10+
labels: ["python", "dependencies"]
1011
groups:
1112
dependencies:
1213
applies-to: version-updates
@@ -19,6 +20,7 @@ updates:
1920
interval: "weekly"
2021
commit-message:
2122
prefix: "chore(deps)"
23+
labels: ["github_actions", "dependencies"]
2224
groups:
2325
dependencies:
2426
applies-to: version-updates
@@ -31,6 +33,7 @@ updates:
3133
interval: "weekly"
3234
commit-message:
3335
prefix: "chore(deps)"
36+
labels: ["docker", "dependencies"]
3437
groups:
3538
dependencies:
3639
applies-to: version-updates

0 commit comments

Comments
 (0)