返回流水线内容同步状态

This commit is contained in:
moshenglv
2021-01-19 13:59:55 +08:00
parent f90bc0897b
commit 703be3f9a1
3 changed files with 11 additions and 6 deletions

View File

@@ -52,7 +52,9 @@ class Ci::PipelinesController < Ci::BaseController
def content
@yaml = "#pipeline \n"
stages = Ci::Pipeline.find(params[:id]).pipeline_stages
pipeline = Ci::Pipeline.find(params[:id])
@sync = pipeline.sync
stages = pipeline.pipeline_stages
if stages && !stages.empty?
init_step = stages.first.pipeline_stage_steps.first
@yaml += init_step.content + "\n" + "steps:\n"

View File

@@ -1 +1,2 @@
json.content @yaml
json.content @yaml
json.sync @sync