Skip to content

Commit

Permalink
make renovate run automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
KameronKales committed Jul 18, 2022
1 parent c17cefd commit 01b875b
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@

{
"extends": [
"config:base"
"extends": ["config:base"],
"rangeStrategy": "update-lockfile",
"enabledManagers": ["npm", "github-actions"],
"packageRules": [
{
"matchManagers": ["npm"],
"description": "Automatically merge all updates",
"automerge": true,
"stabilityDays": 3,
"prCreation": "not-pending",
"ignoreDeps": ["jest", "jest-environment-jsdom"]
},
{
"matchManagers": ["github-actions"],
"addLabels": ["github_actions"],
"description": "Automatically merge all updates",
"automerge": true,
"stabilityDays": 3,
"prCreation": "not-pending"
}
]
}
}

0 comments on commit 01b875b

Please sign in to comment.