Skip to content

Commit

Permalink
build: create renovate configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
davdarras committed Sep 18, 2024
1 parent 928c3bf commit 53bf0a3
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>fr.insee.pearljam</groupId>
<artifactId>pearljam-back-office</artifactId>
<version>5.1.0</version>
<version>5.1.1</version>
<name>Pearl-Jam-Back-Office</name>
<description>Back-office services for PearlJam</description>

Expand Down
44 changes: 44 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"extends": ["config:best-practices", ":semanticCommits", ":disableRateLimiting"],
"baseBranches": ["develop", "main"],
"packageRules": [
{
"enabled": false,
"matchPackagePatterns": ["*"],
"matchBaseBranches": ["main"]
},
{
"matchPackagePatterns": ["*"],
"matchBaseBranches": ["develop"],
"labels": ["dependencies"],
"bumpVersion": "patch",
"dependencyDashboardApproval": true
},
{
"groupName": "spring",
"groupSlug": "spring",
"matchPackagePatterns": ["org.springframework.*"],
"matchBaseBranches": ["develop"],
"bumpVersion": "minor",
"dependencyDashboardApproval": true
},
{
"groupName": "all minor dependencies",
"groupSlug": "all-minor-patch",
"matchPackagePatterns": ["*"],
"matchBaseBranches": ["develop"],
"matchUpdateTypes": ["minor", "patch"],
"bumpVersion": "patch",
"dependencyDashboardApproval": false
}
],
"vulnerabilityAlerts": {
"enabled": true,
"baseBranches": ["main"],
"addLabels": ["security"],
"bumpVersion": "patch",
"schedule": ["before 5:00am"]
},
"schedule": ["every weekend"],
"timezone": "Europe/Paris"
}

0 comments on commit 53bf0a3

Please sign in to comment.