summaryrefslogtreecommitdiff
path: root/app/views/projects/pipelines/new.html.haml
blob: 41fe704601e217679236c024aeaf0d9d4a56da3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
- breadcrumb_title _('Pipelines')
- page_title s_('Pipeline|Run Pipeline')
- settings_link = link_to _('CI/CD settings'), project_settings_ci_cd_path(@project)

%h3.page-title
  = s_('Pipeline|Run Pipeline')
%hr

= form_for @pipeline, as: :pipeline, url: project_pipelines_path(@project), html: { id: "new-pipeline-form", class: "js-new-pipeline-form js-requires-input" } do |f|
  = form_errors(@pipeline)
  .form-group.row
    .col-sm-12
      = f.label :ref, s_('Pipeline|Create for'), class: 'col-form-label'
      = hidden_field_tag 'pipeline[ref]', params[:ref] || @project.default_branch
      = dropdown_tag(params[:ref] || @project.default_branch,
                     options: { toggle_class: 'js-branch-select wide monospace',
                                filter: true, dropdown_class: "dropdown-menu-selectable git-revision-dropdown", placeholder: s_("Pipeline|Search branches"),
                                data: { selected: params[:ref] || @project.default_branch, field_name: 'pipeline[ref]' } })
      .form-text.text-muted
        = s_("Pipeline|Existing branch name or tag")

    .col-sm-12.prepend-top-10.js-ci-variable-list-section
      %label
        = s_('Pipeline|Variables')
      %ul.ci-variable-list
        = render 'ci/variables/variable_row', form_field: 'pipeline', only_key_value: true
      .form-text.text-muted
        = (s_("Pipeline|Specify variable values to be used in this run. The values specified in %{settings_link} will be used by default.") % {settings_link: settings_link}).html_safe

  .form-actions
    = f.submit s_('Pipeline|Create pipeline'), class: 'btn btn-success js-variables-save-button', tabindex: 3
    = link_to _('Cancel'), project_pipelines_path(@project), class: 'btn btn-default float-right'

-# haml-lint:disable InlineJavaScript
%script#availableRefs{ type: "application/json" }= @project.repository.ref_names.to_json.html_safe