Skip to content

Commit

Permalink
build: include e2e tests in renovate config
Browse files Browse the repository at this point in the history
  • Loading branch information
axe312ger authored Nov 9, 2022
1 parent 3e87026 commit 5c92d47
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion scripts/renovate-config-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,15 @@ const defaultPackageRules = [
groupSlug: `starters-examples-major`,
dependencyDashboardApproval: false,
},
{
groupName: `E2E tests`,
commitMessageTopic: `e2e-tests`,
matchPaths: [`e2e-tests/**`],
schedule: `before 7am on Monday`,
matchUpdateTypes: [`major`],
groupSlug: `e2e-tests-major`,
dependencyDashboardApproval: false,
},
{
extends: [`monorepo:gatsby`],
commitMessageTopic: `starters and examples Gatsby packages`,
Expand Down Expand Up @@ -353,7 +362,13 @@ const renovateConfig = {
`:ignoreModulesAndTests`,
`:enableVulnerabilityAlerts`,
],
includePaths: [`package.json`, `packages/**`, `starters/**`, `examples/**`],
includePaths: [
`package.json`,
`packages/**`,
`starters/**`,
`examples/**`,
`e2e-tests/**`,
],
major: {
dependencyDashboardApproval: true,
},
Expand Down

0 comments on commit 5c92d47

Please sign in to comment.