Last active
November 4, 2021 20:34
-
-
Save cmaggiulli/621f436231020879ee6c414deacd85ea to your computer and use it in GitHub Desktop.
get upstream job info
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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