Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pipeline Runs Event Descriptions #492

Merged
merged 3 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion components/schemas/pipelines/runs/PipelineRun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,18 @@ properties:
items:
$ref: ./PipelineRunStep.yml
events:
$ref: ./PipelineRunEvents.yml
type: object
description: A collection of timestamps for each event in the pipeline run's lifetime.
required:
- started
- finished
properties:
started:
description: The timestamp of when the pipeline stage was started.
"$ref": "../../DateTime.yml"
finished:
description: The timestamp of when the pipeline stage was finished.
"$ref": "../../DateTime.yml"
state:
"$ref": "./RunState.yml"
events:
Expand Down
13 changes: 12 additions & 1 deletion components/schemas/pipelines/runs/PipelineRunStep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,18 @@ properties:
- webhook.post
- webhook.get
events:
$ref: ./PipelineRunEvents.yml
type: object
description: A collection of timestamps for each event in the pipeline run's lifetime.
required:
- started
- finished
properties:
started:
description: The timestamp of when the pipeline step was started.
"$ref": "../../DateTime.yml"
finished:
description: The timestamp of when the pipeline step was finished.
"$ref": "../../DateTime.yml"
success:
type: boolean
components:
Expand Down
Loading