interruptible

Mark a job as safe to cancel when a newer pipeline starts.

Supported: boolean

Examples

Interruptible job

job:
  script: echo "job"
  interruptible: true

Non-interruptible job

job:
  script: echo "job"
  interruptible: false