Commit cdfa17c4 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Use before_transition

parent 1bed2c87
......@@ -70,6 +70,10 @@ module Ci
pipeline.update_duration
end
before_transition :canceled => any - [:canceled] do |pipeline|
pipeline.auto_canceled_by = nil
end
after_transition [:created, :pending] => :running do |pipeline|
pipeline.run_after_commit { PipelineMetricsWorker.perform_async(id) }
end
......@@ -95,10 +99,6 @@ module Ci
PipelineNotificationWorker.perform_async(pipeline.id)
end
end
after_transition :canceled => any - [:canceled] do |pipeline|
pipeline.auto_canceled_by = nil
end
end
# ref can't be HEAD or SHA, can only be branch/tag name
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment