Panel | ||||
---|---|---|---|---|
| ||||
|
Merge Check Hook
Objects
Object | Data Returned |
---|---|
changeSetList of changesets |
|
repositoryBasic Metadata about the repository |
|
projectBasic metadata about the project |
|
currentUserReturns the current user |
|
Panel | ||||
---|---|---|---|---|
| ||||
On This Page
|
Functions
Function | Sample call | Data returned | ||||
---|---|---|---|---|---|---|
stash.log(str)Puts a log entry in the atlassian-stash.log | stash.log('Debug');{code} | None | ||||
stash.sendEmail( to, subject, body)Sends an email to the toEmail from the fromUser | stash.sendEmail('bob@example.com','Hello World!','My body goes here');
| None | ||||
stash.getUser(String username)Looks up a stash user | stash.getUser('jbob') |
| ||||
stash.getUsersInGroup(String groupname)Looks up a list of users by group | stash.getUsersInGroup('stash-users'); |
| ||||
stash.sendHttp( method, url)Makes an http request to desired url | stash.sendHttp('GET','http://example.com');
|
| ||||
stash.sendHttp( method, url, body)Makes an http request to desired url with a body | stash.sendHttp('PUT','http://example.com','{}');
|
| ||||
stash.sendFeedback( subject, body, block)Provides feedback to the end user. If block(boolean) is true then the action will be rejected |
| None | ||||
stash.executeCommand(command)Executes the command | stash.executeCommand('echo "Hello World!"'); |
| ||||
stash.fetchCommit(projectKey, repoSlug, refId)Retrieves a single commit | stash.fetchCommits('PROJECT_1', 'rep_1', '0a943a29376f2336b78312d99e65da17048951db') |
| ||||
stash.fetchCommits(projectKey, repoSlug, startRef, endRef)Retrieves multiple commits | stash.fetchCommits('PROJECT_1', 'rep_1', '0a943a29376f2336b78312d99e65da17048951db','0a943a29376f2336b78312d99e65da17048951db') |
|