kibana/vars/withGithubCredentials.groovy
2020-03-12 11:06:53 -04:00

10 lines
173 B
Groovy

def call(closure) {
withCredentials([
string(credentialsId: '2a9602aa-ab9f-4e52-baf3-b71ca88469c7', variable: 'GITHUB_TOKEN'),
]) {
closure()
}
}
return this