kibana/vars/withGithubCredentials.groovy
2020-07-23 14:22:20 -04:00

9 lines
173 B
Groovy

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