Created
September 24, 2019 07:37
-
-
Save bbl/cd04aff644d870cdde9abe037140bcdb to your computer and use it in GitHub Desktop.
Jenkins scripted pipeline: cron trigger
This file contains 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 { | |
properties ([pipelineTriggers([cron('0 0 * * *')])]) | |
stage('Clone repositories') { | |
sh 'echo test' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment