Skip to content

Commit

Permalink
JS-416 Add renovate config
Browse files Browse the repository at this point in the history
  • Loading branch information
saberduck committed Nov 21, 2024
1 parent 1e28fce commit 9f81a94
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>SonarSource/renovate-config:languages-team"
],
"schedule": [
"before 4am on Monday"
],
"enabledManagers": [
"github-actions",
"maven",
"npm"
],
"gradle": {
"enabled": true
},
"bicep": {
"enabled": true
},
"dockerfile": {
"enabled": true
},
"ignorePaths": [
"its/sources/**",
"its/plugin/projects/**",
"**/test/**",
"**/fixtures/**"
],
"packageRules": [
{
"managers": [
"github-actions"
],
"pinDigests": false,
"groupName": "all github actions",
"groupSlug": "all-github-actions"
},
{
"managers": [
"github-actions"
],
"matchUpdateTypes": ["pin", "rollback"],
"enabled": false
},
{
"managers": [
"maven",
"npm"
],
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch"
}
],
"reviewers": ["team:analysis-js-squad"]
}

0 comments on commit 9f81a94

Please sign in to comment.