mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-28 22:16:15 +10:00
- Add page titles to CI settings. - Fix CI admin navigation. - Remove duplicated scope. - Use monospace font for commit sha. - Add page title and header title to build page. - Proper authorization for cancel/retry builds. - Use gitlab pagination theme for builds and group members. - Don't paginate builds widget on build page. - Add badges to commit page Changes/Builds tabs. - Add "Builds" to commit Builds tab page title. - Add and use Ci::Build#retryable? method. - Add CI::Build#retried? method. - Allow all failed commit builds to be retried. - Proper authorization for cancel/retry all builds. - Remove unused param. - Use time_ago_with_tooltip where appropriate. - Tweak builds index text - Remove duplication between builds/build and commit_statuses/commit_status. - Use POST rather than GET for canceling and retrying builds. - Remove redundant URL helpers. - Add build ID to build page. - Link branch name on build page. - Move commit/:sha/ci to commit/:sha/builds.
30 lines
982 B
Plaintext
30 lines
982 B
Plaintext
- page_title "Edit", "#{@runner.description} ##{@runner.id}", "Runners"
|
|
|
|
%h4 Runner ##{@runner.id}
|
|
%hr
|
|
= form_for @runner, url: runner_path(@runner), html: { class: 'form-horizontal' } do |f|
|
|
.form-group
|
|
= label :active, "Active", class: 'control-label'
|
|
.col-sm-10
|
|
.checkbox
|
|
= f.check_box :active
|
|
%span.light Paused runners don't accept new builds
|
|
.form-group
|
|
= label_tag :token, class: 'control-label' do
|
|
Token
|
|
.col-sm-10
|
|
= f.text_field :token, class: 'form-control', readonly: true
|
|
.form-group
|
|
= label_tag :description, class: 'control-label' do
|
|
Description
|
|
.col-sm-10
|
|
= f.text_field :description, class: 'form-control'
|
|
.form-group
|
|
= label_tag :tag_list, class: 'control-label' do
|
|
Tags
|
|
.col-sm-10
|
|
= f.text_field :tag_list, class: 'form-control'
|
|
.help-block You can setup jobs to only use runners with specific tags
|
|
.form-actions
|
|
= f.submit 'Save', class: 'btn btn-save'
|