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

🏗 Enable auto-merge for all devDependency upgrades that pass CI #34718

Merged
merged 1 commit into from
Jun 4, 2021
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
8 changes: 1 addition & 7 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"dependencyDashboard": true,
"prBodyColumns": ["Package", "Update", "Type", "Change", "Package file"],
"prBodyNotes": [
"See all other Renovate PRs on the [Dependency Dashboard](https://github.com/ampproject/amphtml/issues/34671)",
"<details>",
"<summary>How to resolve breaking changes</summary>",
"This PR may introduce breaking changes that require manual intervention. In such cases, you will need to check out this branch, fix the cause of the breakage, and commit the fix to ensure a green CI build. To check out and update this PR, follow the steps below:",
Expand All @@ -20,22 +21,19 @@
{
"groupName": "subpackage devDependencies",
"matchPaths": ["**/*"],
"major": {"automerge": false, "assignAutomerge": false},
"automerge": true,
"assignAutomerge": true
},
{
"groupName": "build-system devDependencies",
"matchPaths": ["build-system/**"],
"major": {"automerge": false, "assignAutomerge": false},
"labels": ["WG: infra"],
"automerge": true,
"assignAutomerge": true
},
{
"groupName": "validator devDependencies",
"matchPaths": ["validator/**"],
"major": {"automerge": false, "assignAutomerge": false},
"labels": ["WG: caching"],
"automerge": true,
"assignAutomerge": true
Expand All @@ -48,7 +46,6 @@
{
"groupName": "core devDependencies",
"matchFiles": ["package.json"],
"major": {"automerge": false, "assignAutomerge": false},
"labels": ["WG: infra"],
"automerge": true,
"assignAutomerge": true
Expand All @@ -57,7 +54,6 @@
"groupName": "linting devDependencies",
"matchFiles": ["package.json"],
"matchPackagePatterns": ["\\b(prettier|eslint)\\b"],
"major": {"automerge": false, "assignAutomerge": false},
"labels": ["WG: infra"],
"automerge": true,
"assignAutomerge": true
Expand All @@ -75,7 +71,6 @@
"groupName": "esbuild devDependencies",
"matchFiles": ["package.json"],
"matchPackagePatterns": ["\\besbuild\\b"],
"major": {"automerge": false, "assignAutomerge": false},
"labels": ["WG: infra", "WG: performance"],
"automerge": true,
"assignAutomerge": true
Expand All @@ -85,7 +80,6 @@
"matchFiles": ["package.json"],
"matchPackagePatterns": ["^@ampproject/"],
"matchDepTypes": ["devDependencies"],
"major": {"automerge": false, "assignAutomerge": false},
"labels": ["WG: bento", "WG: components", "WG: performance"],
"automerge": true,
"assignAutomerge": true
Expand Down