-
Notifications
You must be signed in to change notification settings - Fork 130
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
feat: add PipelineRun support to storage/gcs #971
Conversation
cc1b4bf
to
f94913d
Compare
The following is the coverage report on the affected files.
|
f94913d
to
f7b339a
Compare
The following is the coverage report on the affected files.
|
6a6f1f5
to
466c073
Compare
The following is the coverage report on the affected files.
|
466c073
to
dc947f2
Compare
The following is the coverage report on the affected files.
|
dc947f2
to
b7e05f7
Compare
The following is the coverage report on the affected files.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some minor comments, but overall this looks good!
Prior to this commit the storage/gcs client didn't support PipelineRuns, only TaskRuns which is not in parity with our other storage interfaces. This PR adds PipelineRuns support to storage/gcs.
b7e05f7
to
69babbe
Compare
Thanks for the review @lcarva! I believe I have addressed all of the feeback mentioned, lmk if there is anything additional to do here. |
The following is the coverage report on the affected files.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: lcarva The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
fixes #852
Prior to this commit the storage/gcs client didn't support PipelineRuns, only TaskRuns which is not in parity with our other storage interfaces. This PR adds PipelineRuns support to storage/gcs.
//nolint:staticcheck
used similar to elsewhere in code as otherwise golangci-lint reports usage of deprecated v1beta1 APIs, snippet below:NOTE: This is my first tektoncd/chains PR. If I misunderstood anything about the issue, changes necessary, best practices, etc. I'm happy to iterate as needed. Thanks!