This repository was archived by the owner on Jun 25, 2025. It is now read-only.

Description
I find that there are two ways to fetch github token in the pipeline library
withCredentials to lookup cd-github see:
|
withCredentials([usernamePassword(credentialsId: 'cd-github', passwordVariable: 'PASS', usernameVariable: 'USER')]) { |
Fabric8Command.getGitHubToken which uses a different mechanism. See:
Lets ensure there is only one way to do this.