Skip to content

Instantly share code, notes, and snippets.

@cmaggiulli
Last active November 4, 2021 20:34
Show Gist options
  • Select an option

  • Save cmaggiulli/621f436231020879ee6c414deacd85ea to your computer and use it in GitHub Desktop.

Select an option

Save cmaggiulli/621f436231020879ee6c414deacd85ea to your computer and use it in GitHub Desktop.
get upstream job info
node('master') {
stage('downstream') {
def upstream = currentBuild.rawBuild.getCause(hudson.model.Cause$UpstreamCause)
echo upstream?.shortDescription
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment