diff --git a/durable-task-step/pom.xml b/durable-task-step/pom.xml index 7d8b7205..66327b2d 100644 --- a/durable-task-step/pom.xml +++ b/durable-task-step/pom.xml @@ -32,7 +32,7 @@ workflow-durable-task-step hpi - Workflow: Durable Task Step + Pipeline: Durable Task Step https://wiki.jenkins-ci.org/display/JENKINS/Workflow+Plugin diff --git a/multibranch/src/main/resources/index.jelly b/multibranch/src/main/resources/index.jelly index 30512d64..4f573956 100644 --- a/multibranch/src/main/resources/index.jelly +++ b/multibranch/src/main/resources/index.jelly @@ -25,5 +25,5 @@ THE SOFTWARE.
- Defines a project type for multibranch workflows. + Defines a project type for multibranch pipelines.
diff --git a/support/src/main/java/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerCancelledCause.java b/support/src/main/java/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerCancelledCause.java index dc8962af..231719b4 100644 --- a/support/src/main/java/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerCancelledCause.java +++ b/support/src/main/java/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerCancelledCause.java @@ -22,6 +22,6 @@ public BuildTriggerCancelledCause(Throwable cause) { @Override public String getShortDescription() { - return "Calling workflow was cancelled"; + return "Calling Pipeline was cancelled"; } } diff --git a/support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerStep/help-job.html b/support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerStep/help-job.html index 6d07ae4c..b2528b1c 100644 --- a/support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerStep/help-job.html +++ b/support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerStep/help-job.html @@ -1,7 +1,7 @@
Name of a downstream job to build. - May be another Workflow job, but more commonly a freestyle or other project. - Use a simple name if the job is in the same folder as this upstream workflow job; + May be another Pipeline job, but more commonly a freestyle or other project. + Use a simple name if the job is in the same folder as this upstream Pipeline job; otherwise can use relative paths like ../sister-folder/downstream or absolute paths like /top-level-folder/nested-folder/downstream.
diff --git a/support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerStep/help-wait.html b/support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerStep/help-wait.html index b71f6abd..8b6baff0 100644 --- a/support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerStep/help-wait.html +++ b/support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/build/BuildTriggerStep/help-wait.html @@ -1,5 +1,5 @@

- You may ask that this workflow build wait for completion of the downstream build. + You may ask that this Pipeline build wait for completion of the downstream build. In that case the return value of the step is an object on which you can obtain the following read-only properties: so you can inspect its result and so on.

@@ -19,8 +19,8 @@
  • absoluteUrl
  • - For a non-Workflow downstream build, the buildVariables property offers access to a map of defined build variables. - For a Workflow downstream build, this property gives access to any variables set globally on env. + For a non-Pipeline downstream build, the buildVariables property offers access to a map of defined build variables. + For a Pipeline downstream build, this property gives access to any variables set globally on env.

    Administrator-approved scripts outside the sandbox can use the rawBuild property to get access to a hudson.model.Run with further APIs.