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

JS-416 Add renovate config #4919

Merged
merged 1 commit into from
Nov 22, 2024
Merged
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 .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
},
Comment on lines +14 to +22

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we enabling these?

"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"]
}