def getFromStash(stashProject, stashRepo) {
checkout changelog: true, poll: true, scm: [
$class: 'GitSCM',
branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false,
submoduleCfg: [],
userRemoteConfigs: [[
credentialsId: 'e01b632a-4bb4-446b-9d93-793565f2293f',
url: "ssh://git@stash:7999/${stashProject}/${stashRepo}.git"
]]
]
}
Cool you dug on that one. Though I'm not sure for your question, I would advise you to simply go ahead and file a pull request on some .md of the workflow-plugin codebase. This way this information will either be put by committers elsewhere at the right place or be just merged. In both case you won't have done all that for nought ;).
Cheers
--
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/ef45cdea-c544-4f0a-96aa-4b233c88a459%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
My only remaining question is, is this documented anywhere?