62 lines
2.1 KiB
Text
62 lines
2.1 KiB
Text
.row.gl-mt-3.gl-mb-3
|
|
.col-lg-12
|
|
= render Pajamas::CardComponent.new do |c|
|
|
- c.header do
|
|
= _("Manage your project's triggers")
|
|
- c.body do
|
|
= render 'projects/triggers/form', btn_text: _('Add trigger')
|
|
.gl-mb-5
|
|
#js-ci-pipeline-triggers-list.triggers-list{ data: { triggers: @triggers_json } }
|
|
- c.footer do
|
|
%p
|
|
= _("These examples show how to trigger this project's pipeline for a branch or tag.")
|
|
|
|
%p.light
|
|
= _('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 }
|
|
|
|
%h5.gl-mt-3
|
|
= _('Use cURL')
|
|
|
|
%pre
|
|
:plain
|
|
curl -X POST \
|
|
--fail \
|
|
-F token=TOKEN \
|
|
-F ref=REF_NAME \
|
|
#{builds_trigger_url(@project.id)}
|
|
%h5.gl-mt-3
|
|
= _('Use .gitlab-ci.yml')
|
|
|
|
%pre
|
|
:plain
|
|
script:
|
|
- "curl -X POST --fail -F token=TOKEN -F ref=REF_NAME #{builds_trigger_url(@project.id)}"
|
|
%h5.gl-mt-3
|
|
= _('Use webhook')
|
|
|
|
%pre
|
|
:plain
|
|
#{builds_trigger_url(@project.id, ref: 'REF_NAME')}?token=TOKEN
|
|
%h5.gl-mt-3
|
|
= _('Pass job variables')
|
|
|
|
%p.light
|
|
= _('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 }
|
|
|
|
%p.light
|
|
= _('cURL:')
|
|
|
|
%pre
|
|
:plain
|
|
curl -X POST \
|
|
--fail \
|
|
-F token=TOKEN \
|
|
-F "ref=REF_NAME" \
|
|
-F "variables[RUN_NIGHTLY_BUILD]=true" \
|
|
#{builds_trigger_url(@project.id)}
|
|
%p.light
|
|
= _('Webhook:')
|
|
|
|
%pre.gl-mb-0
|
|
:plain
|
|
#{builds_trigger_url(@project.id, ref: 'REF_NAME')}?token=TOKEN&variables[RUN_NIGHTLY_BUILD]=true
|