Skip to content

Commit

Permalink
Add automerge label to patch-level dependency PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
HappyTetrahedron committed May 23, 2024
1 parent 46fb13d commit 7e1d047
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions {{ cookiecutter.slug }}/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"matchCurrentVersion": ">=1.0.0",
"matchCurrentVersion": "!/^v?0\\./",{# negative match: do not match versions that match regex `^v?0\.` #}
"automerge": true,
{# We can't use Platform Automerge because they are configured manually, so we can't be sure the "require status checks" option is always enabled, and without that, platformAutomerge does not wait for tests to pass. #}
"platformAutomerge": false
{# We can't use Platform Automerge because the repositories are configured manually, so we can't be sure the "require status checks" option is always enabled, and without that, platformAutomerge does not wait for tests to pass. #}
"platformAutomerge": false,
"labels": ["automerge"]
}
]
}

0 comments on commit 7e1d047

Please sign in to comment.