debian-mirror-gitlab/app/views/projects/triggers/_index.html.haml

86 lines
2.9 KiB
Text
Raw Normal View History

2020-07-28 23:09:34 +05:30
.row.gl-mt-3.gl-mb-3.triggers-container
2018-03-17 18:26:18 +05:30
.col-lg-12
2018-11-08 19:23:39 +05:30
.card
.card-header
2021-04-29 21:17:54 +05:30
= _("Manage your project's triggers")
2018-11-08 19:23:39 +05:30
.card-body
2021-04-29 21:17:54 +05:30
= render 'projects/triggers/form', btn_text: _('Add trigger')
2017-08-17 22:00:37 +05:30
%hr
2021-01-03 14:25:43 +05:30
- if Feature.enabled?(:ci_pipeline_triggers_settings_vue_ui, @project)
#js-ci-pipeline-triggers-list.triggers-list{ data: { triggers: @triggers_json } }
2016-09-29 09:46:39 +05:30
- else
2021-01-03 14:25:43 +05:30
- if @triggers.any?
.table-responsive.triggers-list
%table.table
%thead
%th
2021-03-11 19:13:27 +05:30
%strong
2021-04-29 21:17:54 +05:30
= _('Token')
2021-01-03 14:25:43 +05:30
%th
2021-03-11 19:13:27 +05:30
%strong
2021-04-29 21:17:54 +05:30
= _('Description')
2021-01-03 14:25:43 +05:30
%th
2021-03-11 19:13:27 +05:30
%strong
2021-04-29 21:17:54 +05:30
= _('Owner')
2021-01-03 14:25:43 +05:30
%th
2021-03-11 19:13:27 +05:30
%strong
2021-04-29 21:17:54 +05:30
= _('Last used')
2021-01-03 14:25:43 +05:30
%th
= render partial: 'projects/triggers/trigger', collection: @triggers, as: :trigger
- else
%p.settings-message.text-center.gl-mb-3{ data: { testid: 'no_triggers_content' } }
2021-04-29 21:17:54 +05:30
= _('No triggers exist yet. Use the form above to create one.')
2015-09-25 12:07:36 +05:30
2018-11-08 19:23:39 +05:30
.card-footer
2015-09-25 12:07:36 +05:30
2016-09-29 09:46:39 +05:30
%p
2021-04-29 21:17:54 +05:30
= _("These examples show how to trigger this project's pipeline for a branch or tag.")
2015-09-25 12:07:36 +05:30
2016-09-29 09:46:39 +05:30
%p.light
2021-04-29 21:17:54 +05:30
= _('In each example, replace %{code_start}TOKEN%{code_end} with the trigger token you generated and replace %{code_start}REF_NAME%{code_end} with the branch or tag name.').html_safe % { code_start: '<code>'.html_safe, code_end: '</code>'.html_safe }
2021-03-11 19:13:27 +05:30
%h5.gl-mt-3
2021-04-29 21:17:54 +05:30
= _('Use cURL')
2015-09-25 12:07:36 +05:30
2016-09-29 09:46:39 +05:30
%pre
:plain
curl -X POST \
-F token=TOKEN \
-F ref=REF_NAME \
#{builds_trigger_url(@project.id)}
2020-07-28 23:09:34 +05:30
%h5.gl-mt-3
2021-04-29 21:17:54 +05:30
= _('Use .gitlab-ci.yml')
2015-09-25 12:07:36 +05:30
2016-09-29 09:46:39 +05:30
%pre
:plain
2021-03-11 19:13:27 +05:30
script:
- "curl -X POST -F token=TOKEN -F ref=REF_NAME #{builds_trigger_url(@project.id)}"
2020-07-28 23:09:34 +05:30
%h5.gl-mt-3
2021-04-29 21:17:54 +05:30
= _('Use webhook')
2017-08-17 22:00:37 +05:30
%pre
:plain
2021-03-11 19:13:27 +05:30
#{builds_trigger_url(@project.id, ref: 'REF_NAME')}?token=TOKEN
2020-07-28 23:09:34 +05:30
%h5.gl-mt-3
2021-04-29 21:17:54 +05:30
= _('Pass job variables')
2016-09-29 09:46:39 +05:30
%p.light
2021-04-29 21:17:54 +05:30
= _('To pass variables to the triggered pipeline, add %{code_start}variables[VARIABLE]=VALUE%{code_end} to the API request.').html_safe % { code_start: '<code>'.html_safe, code_end: '</code>'.html_safe }
2016-09-29 09:46:39 +05:30
2021-03-11 19:13:27 +05:30
%p.light
2021-04-29 21:17:54 +05:30
= _('cURL:')
2017-08-17 22:00:37 +05:30
%pre
2016-09-29 09:46:39 +05:30
:plain
curl -X POST \
-F token=TOKEN \
-F "ref=REF_NAME" \
-F "variables[RUN_NIGHTLY_BUILD]=true" \
#{builds_trigger_url(@project.id)}
2017-08-17 22:00:37 +05:30
%p.light
2021-04-29 21:17:54 +05:30
= _('Webhook:')
2017-08-17 22:00:37 +05:30
2020-06-23 00:09:42 +05:30
%pre.gl-mb-0
2017-08-17 22:00:37 +05:30
:plain
2021-03-11 19:13:27 +05:30
#{builds_trigger_url(@project.id, ref: 'REF_NAME')}?token=TOKEN&variables[RUN_NIGHTLY_BUILD]=true