Skip to content

Commit

Permalink
chore(renovate): improve schedules & automerging to reduce noise (#942)
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerlox authored Jan 11, 2025
1 parent ce4c3c2 commit c253032
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,22 @@
"osvVulnerabilityAlerts": true,
"packageRules": [
{
"matchPackageNames": ["*"],
"semanticCommitType": "chore",
"matchPackageNames": ["*"]
"semanticCommitScope": "deps",
"schedule": "* * 10,25 * *"
},
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch", "pin", "pinDigest"],
"automerge": true,
"automergeType": "branch"
},
{
"matchDepTypes": ["dependencies"],
"semanticCommitType": "build",
"semanticCommitScope": "deps",
"schedule": "at any time"
},
{
"matchDepTypes": ["dependencies"],
Expand All @@ -36,14 +50,16 @@
"automergeType": "branch"
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["major"],
"semanticCommitType": "build"
"matchManagers": ["github-actions"],
"semanticCommitType": "chore",
"semanticCommitScope": "action",
"schedule": "* * 10,25 * *"
},
{
"matchDepTypes": ["action"],
"semanticCommitType": "ci",
"semanticCommitScope": "action"
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch", "pin", "pinDigest"],
"automerge": true,
"automergeType": "branch"
},
{
"extends": ["monorepo:semantic-release"],
Expand Down

0 comments on commit c253032

Please sign in to comment.