You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello, I'm trying to add default reviewers to a PR opened just if a field in a json is modified.
Until now i figured out just the first condition: to add defaultreviewers if a change is made in that particular file. But i will also need to somehow parse that .json diff and check if that particular field was changed.
My code in repository events:
import com.atlassian.bitbucket.hook.HookResponse
import com.atlassian.bitbucket.repository.RefChange
import com.atlassian.bitbucket.repository.Repository
def pullRequest = event.pullRequest
if(pullRequest.pathsMatch("glob:myfile.json", pullRequest.getCommits())){
return true
}else{
return false
}
the json format:
{
"repositoryName": "",
"family": "none",
"developmentBranch": "master",
"emailingList": "",
"defaultReviewersForPR": "userEmail",
"nrReviewersMustApprovePR": "1",
"buildSteps": {
"rpm": {},
"docker": {
"publish": true,
"gate": true
},
"helm": {
"publish": true
},
"sonar": {
"minCoverage": "0"
}
},
I will need to add default reviewers only if the "gate" field is changed.
Is there a way to do this?
Thanks
Hi @Dirlau Andrei ,
Thank you for your post.
We have published a Script to our Adaptavist Library that shows an example of blocking commits based on file content.
The Script can be found here: https://library.adaptavist.com/entity/block-commits-for-files-containing-content-that-doesnt-match-regex
Please let me know if this example helps you with what you are trying to achieve. It should be possible to edit the example to meet your needs.
Kind regards,
Robert Giddings,
Product Manager,
ScriptRunner for Bitbucket
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.