Skip to content

Commit fd876ff

Browse files
chore(repo): Ignore fixture packages in renovate (#8264)
1 parent 76a80aa commit fd876ff

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

renovate.json5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"**/node_modules/**",
2121
".nvmrc",
2222
"integration/templates/**",
23+
"packages/upgrade/src/__tests__/fixtures/**",
2324
"playground/**",
2425
],
2526
includePaths: [

scripts/renovate-config-generator.mjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,13 @@ const renovateConfig = {
181181
'group:monorepos',
182182
'group:recommended',
183183
],
184-
ignorePaths: ['**/node_modules/**', '.nvmrc', 'integration/templates/**', 'playground/**'],
184+
ignorePaths: [
185+
'**/node_modules/**',
186+
'.nvmrc',
187+
'integration/templates/**',
188+
'packages/upgrade/src/__tests__/fixtures/**',
189+
'playground/**',
190+
],
185191
includePaths: ['package.json', 'packages/**', 'pnpm-workspace.yaml'],
186192
major: { dependencyDashboardApproval: true },
187193
minimumReleaseAge: '3 days',

0 commit comments

Comments
 (0)