Skip to content

Commit 4557745

Browse files
committed
Enable GitHub Actions for renovatebot
1 parent 7cf8d1a commit 4557745

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/renovate.json5

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
enabled: false,
32
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
43
extends: [
5-
'github>HSLdevcom/jore4-tools//renovatebot/jore4-default-preset.json5',
4+
'github>HSLdevcom/jore4-tools/renovatebot/jore4-default-preset.json5',
65
],
76

87
// repository-specific additional rules about grouping, exclusions and inclusions
98
// Note: if the rule feels generic enough, should consider adding it to the jore4 default preset
109
packageRules: [
10+
// Keep these for future reference
1111
{
1212
// group major updates for React and corresponding @types packages together
1313
// these tend to break
@@ -20,6 +20,7 @@
2020
'@types/react-dom',
2121
],
2222
matchUpdateTypes: ['major'],
23+
enabled: false,
2324
},
2425
{
2526
// we don't want to update map related libraries automatically as they require a lot of manual changes
@@ -32,5 +33,18 @@
3233
],
3334
enabled: false,
3435
},
36+
37+
{
38+
// Disable everything for now
39+
matchPackageNames: ['*'],
40+
enabled: false,
41+
},
42+
{
43+
// But enable renovatebot for GitHub Actions
44+
groupName: 'github actions',
45+
groupSlug: 'github-actions',
46+
matchManagers: ['github-actions'],
47+
enabled: true,
48+
},
3549
],
3650
}

0 commit comments

Comments
 (0)