diff options
author | Zeger-Jan van de Weg <git@zjvandeweg.nl> | 2017-08-31 13:47:29 +0200 |
---|---|---|
committer | Zeger-Jan van de Weg <git@zjvandeweg.nl> | 2017-08-31 22:25:26 +0200 |
commit | 35b9213cd7e378a732991a11bc8b5fa9e711c52b (patch) | |
tree | 1264d29ec30665db944dffa3ea8d0fb9a7480c0a /app/assets/javascripts/pipelines | |
parent | 770bcf71bb85c9eff13f4eb14cbd517986da9056 (diff) | |
download | gitlab-ce-35b9213cd7e378a732991a11bc8b5fa9e711c52b.tar.gz |
Add config_source to ci_pipelines
Given the user can soon have multiple config sources for CI, we now store
what type at the time of the pipeline run we chose. This will give us
insight into what triggered the new pipeline so we can display it to the
enduser.
Diffstat (limited to 'app/assets/javascripts/pipelines')
-rw-r--r-- | app/assets/javascripts/pipelines/components/pipeline_url.vue | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/assets/javascripts/pipelines/components/pipeline_url.vue b/app/assets/javascripts/pipelines/components/pipeline_url.vue index 2ca5ac2912f..3cab411d321 100644 --- a/app/assets/javascripts/pipelines/components/pipeline_url.vue +++ b/app/assets/javascripts/pipelines/components/pipeline_url.vue @@ -58,6 +58,13 @@ export default { yaml invalid </span> <span + v-if="pipeline.flags.auto_devops" + v-tooltip + class="label label-info" + title="Pipeline was configured by Auto DevOps"> + Auto DevOps + </span> + <span v-if="pipeline.flags.stuck" class="js-pipeline-url-stuck label label-warning"> stuck |