Commit 666c2284 authored by Marcel Amirault's avatar Marcel Amirault Committed by Simon Knox

Add fail flag to pipeline trigger examples

If a pipeline fails to trigger, cURL still exist with
exit code zero. Example should use --fail to force
job to fail if pipeline didn't trigger.

Changelog: changed
parent 62ba2ee9
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
%pre %pre
:plain :plain
curl -X POST \ curl -X POST \
--fail \
-F token=TOKEN \ -F token=TOKEN \
-F ref=REF_NAME \ -F ref=REF_NAME \
#{builds_trigger_url(@project.id)} #{builds_trigger_url(@project.id)}
...@@ -54,7 +55,7 @@ ...@@ -54,7 +55,7 @@
%pre %pre
:plain :plain
script: script:
- "curl -X POST -F token=TOKEN -F ref=REF_NAME #{builds_trigger_url(@project.id)}" - "curl -X POST --fail -F token=TOKEN -F ref=REF_NAME #{builds_trigger_url(@project.id)}"
%h5.gl-mt-3 %h5.gl-mt-3
= _('Use webhook') = _('Use webhook')
...@@ -73,6 +74,7 @@ ...@@ -73,6 +74,7 @@
%pre %pre
:plain :plain
curl -X POST \ curl -X POST \
--fail \
-F token=TOKEN \ -F token=TOKEN \
-F "ref=REF_NAME" \ -F "ref=REF_NAME" \
-F "variables[RUN_NIGHTLY_BUILD]=true" \ -F "variables[RUN_NIGHTLY_BUILD]=true" \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment