Skip to content

Commit

Permalink
JS-416 Add renovate config (#4919)
Browse files Browse the repository at this point in the history
saberduck authored Nov 22, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 22ec546 commit cce9085
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 cce9085

Please sign in to comment.