Skip to content

Commit

Permalink
ci(renovate): update configuration (#732) [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerlox committed Oct 19, 2023
1 parent 535767a commit 2ff9c6e
Showing 1 changed file with 43 additions and 7 deletions.
50 changes: 43 additions & 7 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,58 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"config:recommended",
":dependencyDashboard",
":disableRateLimiting",
":pinOnlyDevDependencies",
"npm:unpublishSafe",
"docker:pinDigests",
"helpers:pinGitHubActionDigests"
"helpers:pinGitHubActionDigests",
"security:openssf-scorecard"
],
"ignorePresets": [
":semanticPrefixFixDepsChoreOthers",
"group:semantic-releaseMonorepo",
"group:commitlintMonorepo"
],
"schedule": ["before 5am every weekday", "every weekend"],
"lockFileMaintenance": { "enabled": true, "automerge": true },
"labels": ["dependencies"],
"osvVulnerabilityAlerts": true,
"packageRules": [
{
"matchPackagePatterns": ["*"],
"semanticCommitType": "chore"
},
{
"matchDepTypes": ["dependencies"],
"semanticCommitType": "build"
},
{
"matchDepTypes": ["action"],
"semanticCommitType": "ci",
"semanticCommitScope": "action"
},

{
"extends": ["monorepo:semantic-release"],
"groupName": "semantic-release related packages",
"matchUpdateTypes": ["digest", "patch", "minor", "major"]
},
{
"extends": ["monorepo:commitlint"],
"groupName": "semantic-release related packages",
"matchUpdateTypes": ["digest", "patch", "minor", "major"]
},
{
"matchPackagePatterns": [
"@insurgentlab/conventional-changelog-preset",
"@insurgentlab/commitlint-config"
],
"groupName": "semantic-release related packages",
"matchUpdateTypes": ["digest", "patch", "minor", "major"]
},

{
"extends": ["packages:linters"],
"groupName": "linters",
Expand All @@ -23,15 +63,11 @@
"groupName": "tests",
"addLabels": ["tests"]
},

{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchDepTypes": ["action"],
"semanticCommitType": "ci",
"semanticCommitScope": "action"
}
]
}

0 comments on commit 2ff9c6e

Please sign in to comment.