Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 544 Bytes

File metadata and controls

44 lines (30 loc) · 544 Bytes

SCM Trigger

Designer Pipeline

Jenkins Input

<hudson.triggers.SCMTrigger>
  <spec>H/15 * * * *</spec>
  <ignorePostCommitHooks>false</ignorePostCommitHooks>
</hudson.triggers.SCMTrigger>

Transformed Github Action

on:
  schedule:
  - cron: "*/15 * * * *"

Unsupported Options

  • None

Jenkinsfile Pipeline

Jenkins Input

triggers { pollSCM 'H */4 * * 1-5' }

Transformed Github Action

on:
  schedule:
  - cron: 4 */4 * * 1-5

Unsupported Options

  • TimeZone