Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,557,351
Community Members
 
Community Events
184
Community Groups

Add defaultreviewers to PR if particular change in a specific json file usinh hook

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

1 answer

0 votes
Robert Giddings [Adaptavist]
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jan 19, 2022

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events