Skip to content

Commit

Permalink
Merge pull request #47 from neoeinstein/renovate/configure
Browse files Browse the repository at this point in the history
chore: Configure Renovate
  • Loading branch information
neoeinstein authored Apr 5, 2024
2 parents a48a831 + e7551d6 commit e492846
Showing 1 changed file with 119 additions and 0 deletions.
119 changes: 119 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":approveMajorUpdates",
":enableVulnerabilityAlerts",
":automergeDigest",
"security:openssf-scorecard"
],
"osvVulnerabilityAlerts": true,
"packageRules": [
{
"matchManagers": [
"cargo"
],
"matchUpdateTypes": [
"patch"
],
"groupName": "cargo all non breaking changes"
},
{
"matchManagers": [
"cargo"
],
"matchUpdateTypes": [
"minor"
],
"matchCurrentVersion": ">=1.0.0",
"groupName": "cargo all non breaking changes"
},
{
"dependencyDashboardApproval": true,
"matchUpdateTypes": [
"minor"
],
"matchCurrentVersion": "<1.0.0"
},
{
"groupName": "hyper ecosystem",
"matchUpdateTypes": [
"digest",
"patch",
"minor",
"major"
],
"matchSourceUrls": [
"https://github.com/hyperium/h2",
"https://github.com/hyperium/h3",
"https://github.com/hyperium/headers",
"https://github.com/hyperium/http",
"https://github.com/hyperium/http-body",
"https://github.com/hyperium/hyper",
"https://github.com/hyperium/hyper-tls",
"https://github.com/hyperium/hyper-util",
"https://github.com/hyperium/mime"
]
},
{
"groupName": "rust axum monorepo",
"matchUpdateTypes": [
"digest",
"patch",
"minor",
"major"
],
"matchSourceUrls": [
"https://github.com/tokio-rs/axum"
]
},
{
"groupName": "rust prost monorepo",
"matchUpdateTypes": [
"digest",
"patch",
"minor",
"major"
],
"matchSourceUrls": [
"https://github.com/tokio-rs/prost"
]
},
{
"groupName": "rust tokio monorepo",
"matchUpdateTypes": [
"digest",
"patch",
"minor",
"major"
],
"matchSourceUrls": [
"https://github.com/tokio-rs/tokio"
]
},
{
"groupName": "rust tracing monorepo",
"matchUpdateTypes": [
"digest",
"patch",
"minor",
"major"
],
"matchSourceUrls": [
"https://github.com/tokio-rs/tracing"
]
},
{
"groupName": "rust tower middleware ecosystem",
"matchUpdateTypes": [
"digest",
"patch",
"minor",
"major"
],
"matchSourceUrlPrefixes": [
"https://github.com/tower-rs/"
]
}
]
}

0 comments on commit e492846

Please sign in to comment.