Degraded performance Customers may experience intermittent errors using Community search. Our platform vendor is investigating.
It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I'm working on a small plugin whit the sole purpose of writing information about if a branch has been deleted or created to a log file. The code below provides information about which branch is being used when pushing but I'd like to log whenever a branch is created or deleted. Anyone know how to get more detailed information about the changes in the push?
public void postUpdate(@Nonnull PostRepositoryHookContext context,
@Nonnull RepositoryHookRequest hookRequest) {
try {
FileWriter fw = new FileWriter(new File("PATH/log"));
BufferedWriter bw = new BufferedWriter(fw);
bw.append("New entry\n");
Collection<RefChange> changes = hookRequest.getRefChanges();
for (RefChange changes2 : changes) {
bw.append("Id: " + changes2.getRef().getId().toString()+"\n");
bw.append("DisplayId: " + changes2.getRef().getDisplayId().toString()+"\n");
bw.append("Class: " + changes2.getRef().getClass().toString()+"\n");
bw.append("Type: " + changes2.getRef().getType().toString()+"\n");
}
bw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreBitbucket Pipelines helps me manage and automate a number of serverless deployments to AWS Lambda and this is how I do it. I'm building Node.js Lambda functions using node-lambda ...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs