Is there a way to trigger a Jenkins job to run every hour using the Jenkinsfile scripted pipeline syntax?
I have seen examples using the declarative syntax, but none using the pipeline syntax.
Declarative Syntax Example
pipeline {
agent any
triggers {
cron '@daily'
}
...
}