Skip to content

Instantly share code, notes, and snippets.

@mittsh
Forked from pigri/Paw return first 5 character
Created January 13, 2016 14:45
Show Gist options
  • Save mittsh/4432417b059cb9571389 to your computer and use it in GitHub Desktop.
Save mittsh/4432417b059cb9571389 to your computer and use it in GitHub Desktop.
function evaluate(context){
var request = context.getCurrentRequest();
var jsonBody = request.jsonBody;
var json = request.getJsonBodyKeyPath("build.commit_id")
var response = json.substring(5,0);
return response;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment