summaryrefslogtreecommitdiff
path: root/app/views/shared/runners/_runner_type_alert.html.haml
blob: 365cee5fadc235beb64cfc1f9d552dd364a67574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- alert_class = 'gl-mb-5'

- if runner.group_type?
  = render Pajamas::AlertComponent.new(alert_class: alert_class,
    title: s_('Runners|This runner is available to all projects and subgroups in a group.'),
    dismissible: false) do
    .gl-alert-body
      = s_('Runners|Use Group runners when you want all projects in a group to have access to a set of runners.')
      = link_to _('Learn more.'), help_page_path('ci/runners/runners_scope', anchor: 'group-runners'), target: '_blank', rel: 'noopener noreferrer'
- else
  = render Pajamas::AlertComponent.new(alert_class: alert_class,
    title: s_('Runners|This runner is associated with specific projects.'),
    dismissible: false) do
    .gl-alert-body
      = s_('Runners|You can set up a specific runner to be used by multiple projects but you cannot make this a shared runner.')
      = link_to _('Learn more.'), help_page_path('ci/runners/runners_scope', anchor: 'specific-runners'), target: '_blank', rel: 'noopener noreferrer'