Skip to content

Instantly share code, notes, and snippets.

@wololock
Created April 20, 2020 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wololock/508e1220ecb950d6574d07af12e35375 to your computer and use it in GitHub Desktop.
Save wololock/508e1220ecb950d6574d07af12e35375 to your computer and use it in GitHub Desktop.
#!groovy
pipeline {
agent any
stages {
stage("Test") {
when {
changeRequest target: "develop", branch: /^TEST-\d+$/, comparator: 'REGEXP'
}
steps {
sh "printenv | sort"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment