Automerge issues #9945
Unanswered
mfinegold-cambia
asked this question in
Request Help
Replies: 1 comment 4 replies
-
|
Please provide debug logs. They should show you what's going on. Or why it won't automerge. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using Gitlab and would like to group all devDependencies into 1 MR/branch, and then have that branch automerged. When I use the below packageRules, it creates the devDependencies MR/branch but doesn't automerge afterwards. I tried adding requiredStatus: null below the automerge field, and that doesn't seem to create the MR/branch or do anything. My Gitlab project doesn't have any restrictions on which users can merge to master or requiring an MR first. Any idea?
packageRules: [
{
matchDepTypes: [ "devDependencies"],
groupName: "devDependencies",
automerge: true
},
{
matchPackageNames: [ "aws-sdk" ],
matchDepTypes: [ "dependencies" ],
matchUpdateTypes: [ "minor", "patch" ],
enabled: false
},
{
matchUpdateTypes: [ "minor", "patch" ],
matchDepTypes: [ "dependencies" ],
groupName: "Minor and Patch Versions",
excludePackagePrefixes: [ "@chp-cps" ]
}
],
Beta Was this translation helpful? Give feedback.
All reactions