Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_group_runners.html.haml « runners « groups « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd40ec5a984d53750bbb51af1903e6c57452e97e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
- link = link_to _('Runners API'), help_page_path('api/runners.md')

%h3
  = _('Group Runners')

.bs-callout.bs-callout-warning
  = _('GitLab Group Runners can execute code for all the projects in this group.')
  = _('They can be managed using the %{link}.').html_safe % { link: link }

-# Proper policies should be implemented per
-# https://gitlab.com/gitlab-org/gitlab-foss/issues/45894
- if can?(current_user, :admin_pipeline, @group)
  = render partial: 'ci/runner/how_to_setup_runner',
           locals: { registration_token: @group.runners_token,
                     type: 'group',
                     reset_token_url: reset_registration_token_group_settings_ci_cd_path }

- if @group.runners.empty?
  %h4.underlined-title
    = _('This group does not provide any group Runners yet.')

- else
  %h4.underlined-title
    = _('Available group Runners: %{runners}').html_safe % { runners: @group.runners.count }
  %ul.bordered-list
    = render partial: 'groups/runners/runner', collection: @group.runners, as: :runner