Skip to content

Commit 26d114a

Browse files
committed
Add label configuration to Renovate package rules
Labels were added to categorize dependencies managed by Renovate. This includes labels for GitHub Actions, Python-related managers, and a general Renovate label. These changes improve organization and clarity in dependency management. Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
1 parent b9ef959 commit 26d114a

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

renovate.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,33 @@
1111
"schedule": [
1212
"at any time"
1313
],
14+
"labels": [
15+
"renovate"
16+
],
1417
"packageRules": [
1518
{
1619
"matchManagers": [
1720
"uv"
1821
]
22+
},
23+
{
24+
"matchManagers": [
25+
"github-actions"
26+
],
27+
"labels": [
28+
"github-actions"
29+
]
30+
},
31+
{
32+
"matchManagers": [
33+
"uv",
34+
"pip",
35+
"poetry",
36+
"pipenv"
37+
],
38+
"labels": [
39+
"python"
40+
]
1941
}
2042
]
2143
}

0 commit comments

Comments
 (0)