I want to automatically merge a PR, when the target is the "develop" branch.
How can I do this with script runner?
I have found the script event handlers and the "Auto merge of pull request" event.
However, I do not find the target branch name, nor the source branch name.
In the "Auto merge of pull request" event handler you can add the following condition to only merge for the branch called "develop":
event.pullRequest.toRef.displayId == "develop"
You can change develop to whatever branch name if you want to include other ones to.
For multiple branches you can use:
event.pullRequest.toRef.displayId in ["develop", "feature"]
The "mergeRequest" object is not defined. Furthermore, it will not merge my PR, because the inbuild "minimum approved reviewer" number is not reached.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Apologies for some reason I was thinking this was a merge request. I've updated the example in my answer.
To get around the minimum approvers issue, you could just move to using the script merge check ScriptRunner provides here.
Then your condition for the "Require a number of approvers" merge check can be:
mergeRequest.pullRequest.toRef.displayId != "develop"
Therefore the minimum number of reviewers will only be enforced for those branches that are not being auto merged. In this case anything other than "develop".
Hope this helps and let me know how you get on with that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@xion_admin @adammarkham do you guys know how i can also check if the pull request contains files with a certain types of extensions? I a writing a listener to p[perform some action but i cannot get this part right. Help is very much appreciated. Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.