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 #238

Open
wants to merge 1 commit into
base: main
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
80 changes: 55 additions & 25 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,51 @@
{
"extends": [
"config:base",
"config:recommended",
":timezone(Europe/Berlin)"
],
"packageRules": [
{
"groupName": "Gradle dependencies",
"groupSlug": "gradle",
"matchLanguages": [ "java" ],
"labels": [ "gradle-dependencies" ],
"schedule": [ "after 7am and before 1pm on Saturday every 1 week" ],
"matchCategories": [
"java"
],
"labels": [
"gradle-dependencies"
],
"schedule": [
"after 7am and before 1pm on Saturday every 1 week"
],
"separateMajorMinor": false,
"commitMessagePrefix": "fix: "
},
{
"groupName": "GH Actions dependencies",
"groupSlug": "ghactions",
"matchManagers": [ "github-actions" ],
"labels": [ "gh-actions-dependencies" ],
"schedule": [ "before 9am on Saturday every 1 month" ],
"matchManagers": [
"github-actions"
],
"labels": [
"gh-actions-dependencies"
],
"schedule": [
"before 9am on Saturday every 1 month"
],
"separateMajorMinor": false,
"commitMessagePrefix": "chore: "
},
{
"groupName": "Gradle plugins",
"groupSlug": "gradle-plugins",
"matchLanguages": [ "java" ],
"labels": [ "gradle-plugins" ],
"schedule": [ "before 9am on Saturday every 1 week" ],
"matchCategories": [
"java"
],
"labels": [
"gradle-plugins"
],
"schedule": [
"before 9am on Saturday every 1 week"
],
"separateMajorMinor": false,
"commitMessagePrefix": "chore: ",
"matchPackageNames": [
Expand All @@ -40,30 +58,42 @@
{
"groupName": "Test dependencies",
"groupSlug": "test-dependencies",
"matchLanguages": [ "java" ],
"labels": [ "gradle-test-dependencies" ],
"schedule": [ "before 9am on Saturday every 1 week" ],
"matchCategories": [
"java"
],
"labels": [
"gradle-test-dependencies"
],
"schedule": [
"before 9am on Saturday every 1 week"
],
"separateMajorMinor": false,
"commitMessagePrefix": "chore: ",
"matchPackagePrefixes": [
"org.junit:",
"org.junit.jupiter:",
"io.strikt:",
"io.mockk:",
"ch.qos.logback:",
"com.pinterest.ktlint:"
"matchPackageNames": [
"org.junit:{/,}**",
"org.junit.jupiter:{/,}**",
"io.strikt:{/,}**",
"io.mockk:{/,}**",
"ch.qos.logback:{/,}**",
"com.pinterest.ktlint:{/,}**"
]
},
{
"groupName": "Build dependencies",
"groupSlug": "build-dependencies",
"matchLanguages": [ "java" ],
"labels": [ "gradle-build-dependencies" ],
"schedule": [ "before 9am on Saturday every 1 week" ],
"matchCategories": [
"java"
],
"labels": [
"gradle-build-dependencies"
],
"schedule": [
"before 9am on Saturday every 1 week"
],
"separateMajorMinor": false,
"commitMessagePrefix": "build: ",
"matchPackagePrefixes": [
"gradle"
"matchPackageNames": [
"gradle{/,}**"
]
}
],
Expand Down
Loading