Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(config): migrate renovate config #5310

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":noUnscheduledUpdates"],
"reviewers": ["@prisma/orm-ts-maintain"],
"schedule": ["after 5:00am every weekday, before 7:00am every weekday", "every weekend"],
"schedule": [
"after 5:00am every weekday, before 7:00am every weekday",
"every weekend"
],
"automergeSchedule": ["before 7am every weekday"],
"automerge": true,
"major": {
Expand All @@ -28,15 +31,15 @@
"packageRules": [
{
"groupName": "svelte packages",
"matchPackagePatterns": ["svelte"]
"matchPackageNames": ["/svelte/"]
},
{
"groupName": "sveltekit directory",
"matchFileNames": ["frameworks/sveltekit/**"]
},
{
"groupName": "@redwoodjs packages",
"matchPackagePatterns": ["^@redwoodjs"]
"matchPackageNames": ["/^@redwoodjs/"]
},
{
"groupName": "aws-sdk",
Expand All @@ -53,12 +56,18 @@
},
{
"groupName": "TypeScript < 4.9.5 - typegraphql-prisma & firebase",
"matchFileNames": ["community-generators/typegraphql-prisma/**", "platforms-serverless/firebase-functions/**"],
"matchFileNames": [
"community-generators/typegraphql-prisma/**",
"platforms-serverless/firebase-functions/**"
],
"matchPackageNames": ["typescript"]
},
{
"groupName": "GraphQL 15 - TypeGraphQL",
"matchFileNames": ["libraries/type-graphql/**", "community-generators/typegraphql-prisma/**"],
"matchFileNames": [
"libraries/type-graphql/**",
"community-generators/typegraphql-prisma/**"
],
"matchPackageNames": ["graphql"],
"allowedVersions": "<16"
}
Expand Down