Skip to content
This repository has been archived by the owner on Aug 24, 2023. It is now read-only.

Configure Renovate #110

Closed
wants to merge 1 commit into from
Closed
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
62 changes: 62 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"schedule": [
"at any time"
],
"packageRules": [
{
"matchCategories": [
"java"
],
"groupName": "all non-major Java or Scala dependencies",
"groupSlug": "all-java-scala-minor-patch",
"excludePackageNames": [],
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"matchCategories": [
"iac"
],
"groupName": "all non-major terraform dependencies",
"groupSlug": "all-tf-minor-patch",
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"matchCategories": [
"js"
],
"groupName": "all non-major JS or Typescript dependencies",
"groupSlug": "all-js-minor-patch",
"excludePackageNames": [],
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"matchCategories": [
"ci"
],
"groupName": "all github actions dependencies",
"excludePackageNames": [
"trayio/honeycomb"
],
"groupSlug": "all-gha"
},
{
"matchCategories": [
"ci"
],
"matchPackageNames": [
"trayio/honeycomb"
],
"prPriority": 1
}
]
}
Loading