mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
remove unnecessary context reference from trigger job
(cherry picked from commit 817fdf9b439e85c3ddfda126b3efb4e45c36006b)
This commit is contained in:
parent
e42630d1c5
commit
b1433e6317
2 changed files with 7 additions and 2 deletions
|
@ -35,7 +35,12 @@ def onFinish() {
|
|||
// state: error|failure|pending|success
|
||||
def create(sha, state, description, context = 'kibana-ci') {
|
||||
withGithubCredentials {
|
||||
return githubApi.post("repos/elastic/kibana/statuses/${sha}", [ state: state, description: description, context: context, target_url: env.BUILD_URL ])
|
||||
return githubApi.post("repos/elastic/kibana/statuses/${sha}", [
|
||||
state: state,
|
||||
description: description,
|
||||
context: context,
|
||||
target_url: env.BUILD_URL
|
||||
])
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue