mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
9 lines
173 B
Groovy
9 lines
173 B
Groovy
def call(closure) {
|
|
withCredentials([
|
|
string(credentialsId: '2a9602aa-ab9f-4e52-baf3-b71ca88469c7', variable: 'GITHUB_TOKEN'),
|
|
]) {
|
|
closure()
|
|
}
|
|
}
|
|
|
|
return this
|