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

Configure Renovate #1481

Merged
merged 2 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
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
34 changes: 34 additions & 0 deletions config/alfa-renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": [
"Renovate config for Alfa and related project",
"* npm access (via siteimprove/renovate-config:npm)",
"* Automerge minor/patch dependencies that pass tests, weekly",
"* Open PR for Alfa dependencies asap",
"* Open PR for other dependencies weekly, grouped together"
],
"reviewers": ["team:alfa-owners"],
"dependencyDashboard": true,
"packageRules": [
{
"groupName": "Alfa",
"matchPackagePrefixes": ["@siteimprove/alfa"]
},
{
"groupName": "Other deps (major)",
"matchPackagePatterns": ["*"],
"excludePackagePrefixes": ["@siteimprove/alfa"],
"schedule": ["before 3am on Monday"]
},
{
"groupName": "Other deps (minor/patch)",
"matchPackagePatterns": ["*"],
"excludePackagePrefixes": ["@siteimprove/alfa"],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true,
"schedule": ["on Sunday"]
}
],
"extends": ["config:base", "github>siteimprove/renovate-config:npm"]
}
5 changes: 5 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Use Alfa's renovate preset",
"extends": ["local>siteimprove/alfa//config/alfa-renovate"]
}