ba68facf8d
- 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.
40 lines
1.4 KiB
Text
40 lines
1.4 KiB
Text
- page_title "Variables"
|
|
%h3.page-title
|
|
Secret Variables
|
|
|
|
%p.light
|
|
These variables will be set to environment by the runner and will be hidden in the build log.
|
|
%br
|
|
So you can use them for passwords, secret keys or whatever you want.
|
|
|
|
%hr
|
|
|
|
|
|
= nested_form_for @ci_project, url: url_for(controller: 'projects/variables', action: 'update'), html: { class: 'form-horizontal' } do |f|
|
|
- if @project.errors.any?
|
|
#error_explanation
|
|
%p.lead= "#{pluralize(@ci_project.errors.count, "error")} prohibited this project from being saved:"
|
|
.alert.alert-error
|
|
%ul
|
|
- @ci_project.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
= f.fields_for :variables do |variable_form|
|
|
.form-group
|
|
= variable_form.label :key, 'Key', class: 'control-label'
|
|
.col-sm-10
|
|
= variable_form.text_field :key, class: 'form-control', placeholder: "PROJECT_VARIABLE"
|
|
|
|
.form-group
|
|
= variable_form.label :value, 'Value', class: 'control-label'
|
|
.col-sm-10
|
|
= variable_form.text_area :value, class: 'form-control', rows: 2, placeholder: ""
|
|
|
|
= variable_form.link_to_remove "Remove this variable", class: 'btn btn-danger pull-right prepend-top-10'
|
|
%hr
|
|
%p
|
|
.clearfix
|
|
= f.link_to_add "Add a variable", :variables, class: 'btn btn-success pull-right'
|
|
|
|
.form-actions
|
|
= f.submit 'Save changes', class: 'btn btn-save', return_to: request.original_url
|