2021-06-29 14:50:19 +02:00
|
|
|
# ${docGenStepName}
|
|
|
|
|
|
|
|
## ${docGenDescription}
|
|
|
|
|
|
|
|
## ${docGenParameters}
|
|
|
|
|
|
|
|
## ${docGenConfiguration}
|
|
|
|
|
|
|
|
## ${docJenkinsPluginDependencies}
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
Example configuration for the use in a `Jenkinsfile`.
|
|
|
|
|
|
|
|
```groovy
|
|
|
|
integrationArtifactTriggerIntegrationTest script: this
|
|
|
|
```
|
|
|
|
|
|
|
|
Example for the use in a YAML configuration file (such as `.pipeline/config.yaml`).
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
steps:
|
|
|
|
<...>
|
|
|
|
integrationArtifactTriggerIntegrationTest:
|
2021-08-04 16:42:25 +02:00
|
|
|
integrationFlowServiceKeyCredentialsId: 'MY_INTEGRATION_FLOW_SERVICE_KEY'
|
2021-06-29 14:50:19 +02:00
|
|
|
integrationFlowId: 'INTEGRATION_FLOW_ID'
|
|
|
|
contentType: 'text/plain'
|
|
|
|
messageBodyPath: 'myIntegrationsTest/testBody'
|
|
|
|
```
|