chore: Configure Renovate (#15468)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: おさむのひと <46447427+samunohito@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2025-02-14 07:31:28 +09:00 committed by GitHub
parent 4d562e7439
commit d893fbc5af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 81 additions and 2 deletions

View File

@ -9,7 +9,7 @@ updates:
directory: "/" directory: "/"
schedule: schedule:
interval: daily interval: daily
open-pull-requests-limit: 100 open-pull-requests-limit: 0
# Add only the root, not each workspace item # Add only the root, not each workspace item
# https://github.com/dependabot/dependabot-core/issues/4993#issuecomment-1289133027 # https://github.com/dependabot/dependabot-core/issues/4993#issuecomment-1289133027
@ -17,7 +17,7 @@ updates:
directory: "/" directory: "/"
schedule: schedule:
interval: daily interval: daily
open-pull-requests-limit: 10 open-pull-requests-limit: 0
# List dependencies required to be updated together, sharing the same version numbers. # List dependencies required to be updated together, sharing the same version numbers.
# Those who simply have the common owner (e.g. @fastify) don't need to be listed. # Those who simply have the common owner (e.g. @fastify) don't need to be listed.
groups: groups:

79
renovate.json5 Normal file
View File

@ -0,0 +1,79 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"timezone": "Asia/Tokyo",
"schedule": [
"* 0 * * *"
],
"prHourlyLimit": 5,
"dependencyDashboardApproval": true,
"dependencyDashboardAutoclose": true,
"osvVulnerabilityAlerts": true,
"dependencyDashboardOSVVulnerabilitySummary": "unresolved",
"packageRules": [
{
"groupName": "[Backend] Update dependencies",
"matchPaths": [
"packages/backend/**/package.json"
]
},
{
"groupName": "[Frontend] Update dependencies",
"matchPaths": [
"packages/frontend/**/package.json",
"packages/frontend-embed/**/package.json",
"packages/frontend-shared/**/package.json",
"packages/misskey-bubble-game/**/package.json",
"packages/misskey-reversi/**/package.json",
"packages/sw/**/package.json"
]
},
{
"groupName": "[misskey-js] Update dependencies",
"matchPaths": [
"packages/misskey-js/**/package.json"
]
},
{
"groupName": "[Root] Update dependencies",
"matchPaths": [
"package.json"
]
},
{
"groupName": "[Tools] Update dependencies",
"matchPaths": [
"scripts/**/package.json"
]
},
{
"groupName": "[GitHub Actions] Update dependencies",
"matchPaths": [
".github/workflows/**/*.yml"
]
},
{
"groupName": "[Node.js] Update dependencies",
"matchPaths": [
".node-version"
]
},
{
"groupName": "[Docker] Update dependencies",
"matchPaths": [
"compose.local-db.yml",
"compose_example.yml",
"packages/backend/test-federation/*.yml",
"Dockerfile"
]
},
{
"groupName": "[devcontainer] Update dependencies",
"matchPaths": [
".devcontainer/**"
]
}
]
}