com.tencent.devops.process.pojo.pipeline.enums.PipelineYamlStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-process Show documentation
Show all versions of api-process Show documentation
Tencent blueking ci project
The newest version!
package com.tencent.devops.process.pojo.pipeline.enums
/**
* YAML状态
*/
enum class PipelineYamlStatus {
// 状态OK,已合入到主干
OK,
// 主干已删除
DELETED,
// 没有合入到主干
UN_MERGED;
}