1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-06-27 00:41:29 +02:00

Rename externalPipelineExecute to pipelineExecute

This commit is contained in:
Marcus Holl
2017-12-01 10:51:11 +01:00
parent bbe799fd19
commit 88ac3ae43e
4 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# externalPipelineExecute
# pipelineExecute
## Description
Loads a pipeline from a git repository. The idea is to set up a pipeline job in Jenkins that loads a minimal pipeline, which in turn loads the shared library and then uses this step to load the actual pipeline.
@ -37,5 +37,5 @@ none
## Example
```groovy
externalPipelineExecute repoUrl: "https://github.com/MyOrg/MyPipelineRepo.git", branch: 'feature1', path: 'path/to/Jenkinsfile', credentialsId: 'MY_REPO_CREDENTIALS'
pipelineExecute repoUrl: "https://github.com/MyOrg/MyPipelineRepo.git", branch: 'feature1', path: 'path/to/Jenkinsfile', credentialsId: 'MY_REPO_CREDENTIALS'
```