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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-28 00:16:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-28 00:16:17 +0300
commitd099cb5be9c4fa93ba9a114d11ba6dbe5f10a4eb (patch)
treed8de98401200c58a9f1b92bf1705fdae42f6d6d3 /app/views/ci
parent034c9310c8f946cf82651e63f73bed0a599d345b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views/ci')
-rw-r--r--app/views/ci/runner/_how_to_setup_runner.html.haml23
1 files changed, 0 insertions, 23 deletions
diff --git a/app/views/ci/runner/_how_to_setup_runner.html.haml b/app/views/ci/runner/_how_to_setup_runner.html.haml
deleted file mode 100644
index 29c2e364c37..00000000000
--- a/app/views/ci/runner/_how_to_setup_runner.html.haml
+++ /dev/null
@@ -1,23 +0,0 @@
-- link = link_to _("Install GitLab Runner and ensure it's running."), 'https://docs.gitlab.com/runner/install/', target: '_blank', rel: 'noopener noreferrer'
-.gl-mb-3
- %h5= _("Set up a %{type} runner for a project") % { type: type }
-%ol
- %li
- = link.html_safe
- %li
- = _("Register the runner with this URL:")
- %br
- %code#coordinator_address= root_url(only_path: false)
- = deprecated_clipboard_button(target: '#coordinator_address', title: _("Copy URL"))
- %br
- %br
- = _("And this registration token:")
- %br
- %code#registration_token= registration_token
- = deprecated_clipboard_button(target: '#registration_token', title: _("Copy token"))
-
-.gl-mt-3.gl-mb-3
-= render Pajamas::ButtonComponent.new(variant: :default, method: :put, href: reset_token_url, button_options: { id: 'Reset registration token', data: { confirm: _("Are you sure you want to reset the registration token?") } }) do
- = _('Reset registration token')
-
-#js-install-runner