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

Add renovate automerge. #339

Merged
merged 1 commit into from
Sep 22, 2024
Merged
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
76 changes: 61 additions & 15 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,41 +7,87 @@
"workarounds:nodeDockerVersioning"
],
"packageRules": [
{
"description": "Automerge non-major updates",
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"groupName": "Runtime Dependencies Core",
"matchPackageNames": ["/^react/"]
"matchPackageNames": [
"/^react/"
]
},
{
"groupName": "Runtime Dependencies Support",
"matchDepNames": ["axios", "jstz", "luxon"],
"matchPackageNames": ["/^@fortawesome/"]
"matchDepNames": [
"axios",
"jstz",
"luxon"
],
"matchPackageNames": [
"/^@fortawesome/"
]
},
{
"groupName": "Runtime Dependencies Graphics",
"matchDepNames": ["three"],
"extends": ["schedule:monthly"],
"matchPackageNames": ["/^@react-three/"]
"matchDepNames": [
"three"
],
"extends": [
"schedule:monthly"
],
"matchPackageNames": [
"/^@react-three/"
]
},
{
"groupName": "Development Dependencies Dev and Test",
"matchDepNames": ["jsdom", "yarn"],
"matchPackageNames": ["/^@juggle/", "/^@testing/", "/^@vite/", "/^vite/"]
"matchDepNames": [
"jsdom",
"yarn"
],
"matchPackageNames": [
"/^@juggle/",
"/^@testing/",
"/^@vite/",
"/^vite/"
]
},
{
"groupName": "Development Dependencies Support",
"matchDepNames": ["prettier", "sass", "typescript"],
"matchPackageNames": ["/^@typescript/", "/^eslint/"]
"matchDepNames": [
"prettier",
"sass",
"typescript"
],
"matchPackageNames": [
"/^@typescript/",
"/^eslint/"
]
},
{
"groupName": "GitHub Actions",
"matchManagers": ["github-actions"]
"matchManagers": [
"github-actions"
]
},
{
"groupName": "Node.js",
"matchDatasources": ["docker"],
"matchDepNames": ["node"]
"matchDatasources": [
"docker"
],
"matchDepNames": [
"node"
]
}
],
"timezone": "America/Phoenix",
"schedule": ["on Saturday after 4pm", "on Saturday before 11pm"]
}
"schedule": [
"on Saturday after 4pm",
"on Saturday before 11pm"
]
}