summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2016-07-12 19:58:34 +0000
committerJacob Schatz <jschatz@gitlab.com>2016-07-12 19:58:34 +0000
commit7a03ece42153a2f3f2ea99a23df2e88748e72452 (patch)
tree0be004fdda8ca7721862e8e406d36ec2d5debf57
parentbd7d6124524e0a2222f7837b27857b363b34729f (diff)
parentc8407dd9cfa970de698ac50a0af636b1fa8df0b0 (diff)
downloadgitlab-ce-7a03ece42153a2f3f2ea99a23df2e88748e72452.tar.gz
Merge branch '18935-pipeline-button' into 'master'
Change new pipeline to run pipeline ## What does this MR do? Change text of button from `New pipeline` to `Run pipeline` ## What are the relevant issue numbers? Closes #18935 Part of #18920 ## Screenshots (if relevant) ![Screen_Shot_2016-07-06_at_12.15.36_PM](/uploads/2e0413b802118781dc5a29c7f1c105b8/Screen_Shot_2016-07-06_at_12.15.36_PM.png) See merge request !5119
-rw-r--r--app/views/projects/pipelines/index.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/pipelines/index.html.haml b/app/views/projects/pipelines/index.html.haml
index 7c225e2b282..2aedb71d79f 100644
--- a/app/views/projects/pipelines/index.html.haml
+++ b/app/views/projects/pipelines/index.html.haml
@@ -28,7 +28,7 @@
.nav-controls
- if can? current_user, :create_pipeline, @project
= link_to new_namespace_project_pipeline_path(@project.namespace, @project), class: 'btn btn-create' do
- New pipeline
+ Run pipeline
- unless @repository.gitlab_ci_yml
= link_to 'Get started with Pipelines', help_page_path('ci/quick_start/README'), class: 'btn btn-info'