957632b725
update CHANGELOG add auto-completion into pipeline add auto-completion into pipeline add auto-completion into pipeline update changelog modify tests remove empty lines add auto-completion into pipeline update changelog modify tests switch text_field_tag into text_field add test to new field switch context into describe Update CHANGELOG render only commit title update CHANGELOG add auto-completion into pipeline add auto-completion into pipeline add auto-completion into pipeline update changelog modify tests remove empty lines add auto-completion into pipeline update changelog modify tests update changelog Update CHANGELOG add indetation add tests to pipeline ref change file name for tests change file name for spec tests remove empty line rename test it rename test name removing unexpected changes removing unexpected changes2 update changelog
21 lines
920 B
Text
21 lines
920 B
Text
- page_title "New Pipeline"
|
|
|
|
%h3.page-title
|
|
New Pipeline
|
|
%hr
|
|
|
|
= form_for @pipeline, as: :pipeline, url: namespace_project_pipelines_path(@project.namespace, @project), html: { id: "new-pipeline-form", class: "form-horizontal js-new-pipeline-form js-requires-input" } do |f|
|
|
= form_errors(@pipeline)
|
|
.form-group
|
|
= f.label :ref, 'Create for', class: 'control-label'
|
|
.col-sm-10
|
|
= f.text_field :ref, required: true, tabindex: 2, class: 'form-control js-branch-name ui-autocomplete-input', autocomplete: :false, id: :ref
|
|
.help-block Existing branch name, tag
|
|
.form-actions
|
|
= f.submit 'Create pipeline', class: 'btn btn-create', tabindex: 3
|
|
= link_to 'Cancel', namespace_project_pipelines_path(@project.namespace, @project), class: 'btn btn-cancel'
|
|
|
|
:javascript
|
|
var availableRefs = #{@project.repository.ref_names.to_json};
|
|
|
|
new NewBranchForm($('.js-new-pipeline-form'), availableRefs)
|