diff options
author | Filipa Lacerda <lacerda.filipa@gmail.com> | 2017-02-21 18:24:54 +0000 |
---|---|---|
committer | Filipa Lacerda <lacerda.filipa@gmail.com> | 2017-02-21 18:24:54 +0000 |
commit | 7094f50d3893d5ac415045e899d0b3994af5c6e7 (patch) | |
tree | c34b65cc1d50cd27cdaa1b7108ca68efc9a0cf93 /lib | |
parent | 3619c221a13e915537be97603421381ce0e6765f (diff) | |
parent | 4ad2fbc35ced9d42186606e426b66857f9a7d54f (diff) | |
download | gitlab-ce-7094f50d3893d5ac415045e899d0b3994af5c6e7.tar.gz |
Merge branch 'rename-retry-failed-pipeline-to-retry' into 'master'
Rename retry failed button on pipeline page to just retry
See merge request !9369
Diffstat (limited to 'lib')
-rw-r--r-- | lib/api/pipelines.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/pipelines.rb b/lib/api/pipelines.rb index b634b1d0222..f59f7959173 100644 --- a/lib/api/pipelines.rb +++ b/lib/api/pipelines.rb @@ -23,7 +23,7 @@ module API pipelines = PipelinesFinder.new(user_project).execute(scope: params[:scope]) present paginate(pipelines), with: Entities::Pipeline end - + desc 'Create a new pipeline' do detail 'This feature was introduced in GitLab 8.14' success Entities::Pipeline @@ -58,7 +58,7 @@ module API present pipeline, with: Entities::Pipeline end - desc 'Retry failed builds in the pipeline' do + desc 'Retry builds in the pipeline' do detail 'This feature was introduced in GitLab 8.11.' success Entities::Pipeline end |