23 lines
909 B
Text
23 lines
909 B
Text
- link = link_to _('Runner API'), help_page_path('api/runners.md')
|
|
|
|
%h4
|
|
= _('Group runners')
|
|
|
|
%p
|
|
= _('These runners are shared across projects in this group.')
|
|
= _('Group runners can be managed with 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_automatically',
|
|
locals: { type: 'group',
|
|
clusters_path: group_clusters_path(@group) }
|
|
%hr
|
|
= 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,
|
|
project_path: '',
|
|
group_path: @group.path }
|
|
%br
|