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

update pipeline run #260

Merged
merged 3 commits into from
Jan 16, 2024
Merged
Changes from 1 commit
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
12 changes: 12 additions & 0 deletions components/schemas/pipelines/runs/Run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,13 @@ properties:
- environment.start
- environment.stop
- environment.delete
- environments.deployments.prune
- environments.deployments.tag
- image.source.create
- image.create
- image.import
- images.prune
- image.create-import
- container.create
- container.reimage
- container.start
Expand All @@ -66,10 +69,19 @@ properties:
- stack.build.generate
- sleep
- webhook.post
- webhook.get
events:
$ref: ./PipelineRunEvents.yml
success:
type: boolean
error:
type: object
nullable: true
description: An error, if any, that has occurred for this step.
properties:
message:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this required? if not, it should be nullable too.

type: string
description: Details about the error that has occurred.

events:
$ref: ./PipelineRunEvents.yml
Expand Down