diff --git a/bundle/config/mutator/process_environment_mode.go b/bundle/config/mutator/process_environment_mode.go index c849c4d57..cd2510acd 100644 --- a/bundle/config/mutator/process_environment_mode.go +++ b/bundle/config/mutator/process_environment_mode.go @@ -36,6 +36,15 @@ func processDebugMode(b *bundle.Bundle) error { if r.Jobs[i].MaxConcurrentRuns == 0 { r.Jobs[i].MaxConcurrentRuns = debugConcurrentRuns } + if r.Jobs[i].Schedule != nil { + r.Jobs[i].Schedule.PauseStatus = "PAUSED" + } + if r.Jobs[i].Continuous != nil { + r.Jobs[i].Continuous.PauseStatus = "PAUSED" + } + if r.Jobs[i].Trigger != nil { + r.Jobs[i].Trigger.PauseStatus = "PAUSED" + } } for i := range r.Pipelines {