Skip to content

Commit

Permalink
Add results linking to execution order docs πŸ”—
Browse files Browse the repository at this point in the history
The docs on how to control ordering in pipelines were missing that youc
can also express ordering by linking the results of one Task to the
params of another.
  • Loading branch information
bobcatfish authored and tekton-robot committed Jun 1, 2020
1 parent 77a7c01 commit 8e583cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,9 @@ without getting stuck in an infinite loop.

This is done using:

- [`from`](#using-the-from-parameter) clauses on the [`PipelineResources`](resources.md) used by each `Task`, and
- [`runAfter`](#using-the-runafter-parameter) clauses on the corresponding `Tasks`.
- [`from`](#using-the-from-parameter) clauses on the [`PipelineResources`](resources.md) used by each `Task`
- [`runAfter`](#using-the-runafter-parameter) clauses on the corresponding `Tasks`
- By linking the [`results`](#configuring-execution-results-at-the-pipeline-level) of one `Task` to the params of another

For example, the `Pipeline` defined as follows

Expand Down

0 comments on commit 8e583cb

Please sign in to comment.