How can a build pipeline be scheduled to execute at a certain time of the night just like a regular job can be?
Complete Example (taken from docs) Ref: https://jenkins.io/doc/book/pipeline/syntax/#triggers
pipeline { agent any triggers { cron('H */4 * * 1-5') } stages { stage('Example') { steps { echo 'Hello World' } } } }