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

TEP-140: Produce Results in Matrix #7167

Merged

Conversation

EmmaMunley
Copy link
Contributor

@EmmaMunley EmmaMunley commented Oct 2, 2023

This PR enables producing Results from Matrixed PipelineTasks so that they can be used in subsequent PipelineTasks [See TEP-140: Produce Results in Matrix]. A Pipeline author can now declare a matrixed taskRun that emits results of type string that are fanned out over multiple taskRuns and aggregated into an array of results that can then be consumed by another pipelineTask using the syntax $(tasks.<pipelineTaskName>.results.<resultName>[*]).

This commit also introduces 2 context variables to 1) Access Matrix Combinations Length using tasks.<pipelineTaskName>.matrix.length and 2) Access Aggregated Results Length using tasks.<pipelineTaskName>.matrix.<resultName>.length

Note: Currently, we don't support consuming a single instance/combinations of results. Authors must consume the entire aggregated results array. t message for your changes.
/kind feature

Closes #5265

Changes

Submitter Checklist

As the author of this PR, please check off the items in this checklist:

  • Has Docs if any changes are user facing, including updates to minimum requirements e.g. Kubernetes version bumps
  • Has Tests included if any functionality added or changed
  • Follows the commit message standard
  • Meets the Tekton contributor standards (including functionality, content, code)
  • Has a kind label. You can add one by adding a comment on this PR that contains /kind <type>. Valid types are bug, cleanup, design, documentation, feature, flake, misc, question, tep
  • Release notes block below has been updated with any user facing changes (API changes, bug fixes, changes requiring upgrade notices or deprecation warnings). See some examples of good release notes.
  • Release notes contains the string "action required" if the change requires additional action from users switching to the new release

Release Notes

Pipeline authors can now produce results from a Matrixed PipelineTask as an aggregated array and consume them in an array params. Two context variables are introduced as part of this feature, $(tasks.<pipelineTaskName>.matrix.length) to get the length of a matrix combinations and $(tasks.<pipelineTaskName>.matrix.<resultName>.length) to get a length of aggregated result.

@tekton-robot tekton-robot added release-note Denotes a PR that will be considered when it comes time to generate release notes. kind/feature Categorizes issue or PR as related to a new feature. labels Oct 2, 2023
@tekton-robot tekton-robot added the size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Oct 2, 2023
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 98.0% -1.2
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 97.6% -1.2
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 95.1% -3.0
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 93.8% -3.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 98.0% -1.5
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 87.0% -9.2

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 98.0% -1.2
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 97.6% -1.2
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 95.1% -3.0
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 93.8% -3.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 98.0% -1.5
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 87.8% -8.4

@Yongxuanzhang
Copy link
Member

/assign

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 97.7% -1.4
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 97.3% -1.5
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.0% -0.1
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 94.4% -2.5
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 98.0% -1.5
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 87.0% -9.2

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 97.7% -1.4
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 97.3% -1.5
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.0% -0.1
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 94.4% -2.5
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 98.0% -1.5
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 87.0% -9.2

@EmmaMunley EmmaMunley force-pushed the tep-140-produce-results-matrix branch from b1ea72c to c04d0df Compare October 3, 2023 18:25
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.0% -0.2
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.7% -0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.0% -0.1
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.0% -0.5
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 96.5% 0.3

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.0% -0.2
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.7% -0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.0% -0.1
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.0% -0.5
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 95.7% -0.5

@EmmaMunley
Copy link
Contributor Author

/assign @pritidesai

Copy link
Member

@Yongxuanzhang Yongxuanzhang left a comment

Choose a reason for hiding this comment

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

Thanks! This is a really big PR, just finish reading the pipeline_validation file.

pkg/apis/pipeline/v1/pipeline_validation.go Outdated Show resolved Hide resolved
pkg/apis/pipeline/v1/pipeline_validation.go Outdated Show resolved Hide resolved
pkg/apis/pipeline/v1/pipeline_validation.go Outdated Show resolved Hide resolved
pkg/apis/pipeline/v1/pipeline_validation.go Outdated Show resolved Hide resolved
pkg/apis/pipeline/v1/pipeline_validation.go Outdated Show resolved Hide resolved
@EmmaMunley EmmaMunley force-pushed the tep-140-produce-results-matrix branch from c04d0df to 5c986c5 Compare October 4, 2023 20:05
@EmmaMunley
Copy link
Contributor Author

Thanks! This is a really big PR, just finish reading the pipeline_validation file.

Thanks @Yongxuanzhang! I've addressed the comments so far and will continue iterating. Appreciate the reviews 🙂

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.0% -0.3
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.0% -0.3
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

@EmmaMunley EmmaMunley force-pushed the tep-140-produce-results-matrix branch from 5c986c5 to 8100f01 Compare October 4, 2023 20:38
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.0% -0.3
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 99.1% 2.9

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.0% -0.3
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 99.1% 2.9

@EmmaMunley EmmaMunley force-pushed the tep-140-produce-results-matrix branch from 8100f01 to 2b353aa Compare October 5, 2023 14:23
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.4% 0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

Copy link
Contributor Author

@EmmaMunley EmmaMunley left a comment

Choose a reason for hiding this comment

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

Thank you @Yongxuanzhang and @JeromeJu for the reviews 🙏

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.4% 0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.3
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

@EmmaMunley
Copy link
Contributor Author

/retest

@Yongxuanzhang
Copy link
Member

Thanks! I will take another round later

@EmmaMunley EmmaMunley force-pushed the tep-140-produce-results-matrix branch 2 times, most recently from bafc0b7 to 8798c09 Compare October 13, 2023 20:56
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.4% 0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.4% 0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.4% 0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.0% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 99.2% 3.0

@EmmaMunley
Copy link
Contributor Author

/retest

Copy link
Member

@Yongxuanzhang Yongxuanzhang left a comment

Choose a reason for hiding this comment

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

Thanks a lot for all the efforts working on this feature!

pkg/reconciler/pipelinerun/pipelinerun_test.go Outdated Show resolved Hide resolved
pkg/apis/pipeline/v1/matrix_types.go Outdated Show resolved Hide resolved
pkg/apis/pipeline/v1/pipeline_validation.go Outdated Show resolved Hide resolved
pkg/apis/pipeline/v1/pipeline_validation.go Outdated Show resolved Hide resolved
}
if !referencedPipelineTask.isSuccessful() && !referencedPipelineTask.isFailure() {
return nil, resultRef.PipelineTask, fmt.Errorf("task %q referenced by result was not finished", referencedPipelineTask.PipelineTask.Name)
func resolveCustomResultRef(customRuns []*v1beta1.CustomRun, resultRef *v1.ResultRef) (*ResolvedResultRef, error) {
Copy link
Member

Choose a reason for hiding this comment

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

It looks like the refactor here attempts to separate resolveCustomResultRef out from previously the first condition check at L140. Do we not need the check the following any longer or is this indicating customRuns would also support matrixed referenced Tasks IIUC?

		if len(referencedPipelineTask.CustomRuns) != 1 {
			return nil, resultRef.PipelineTask, fmt.Errorf("referenced tasks can only have length of 1 since a matrixed task does not support producing results, but was length %d", len(referencedPipelineTask.TaskRuns))
		}

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Custom Runs would also support referenced Matrixed tasks. Added an example unit test:

func TestReconciler_CustomTaskMatrixConsumingResults(t *testing.T) {

@EmmaMunley EmmaMunley force-pushed the tep-140-produce-results-matrix branch from 8798c09 to 3e499fe Compare October 17, 2023 15:37
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/matrix_types.go 100.0% 95.7% -4.3
pkg/apis/pipeline/v1/param_types.go 98.4% 98.4% 0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/matrix_types.go 100.0% 95.7% -4.3
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

This commit enables producing Results from Matrixed PipelineTasks so that they can be used in subsequent PipelineTasks. A Pipeline author can now declare a matrixed taskRun that emits results of type string that are fanned out over multiple taskRuns and aggregated into an array of results that can then be consumed by another pipelineTask using the syntax `$(tasks.<pipelineTaskName>.results.<resultName>[*])`.

This commit also introduces 2 context variables to 1) Access Matrix Combinations Length using `tasks.<pipelineTaskName>.matrix.length` and 2) Access Aggregated Results Length using `tasks.<pipelineTaskName>.matrix.<resultName>.length`

Note: Currently, we don't support consuming a single instance/combinations of results. Authors must consume the entire aggregated results array.

Co-authored-by: Priti Desai <pdesai@us.ibm.com>
@EmmaMunley EmmaMunley force-pushed the tep-140-produce-results-matrix branch from 3e499fe to e315399 Compare October 17, 2023 15:50
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/matrix_types.go 100.0% 95.7% -4.3
pkg/apis/pipeline/v1/param_types.go 98.4% 98.4% 0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/matrix_types.go 100.0% 95.7% -4.3
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.4% 0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.4% 98.4% 0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.1% 99.2% 0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 98.8% 98.9% 0.1
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.3% 0.2
pkg/reconciler/pipelinerun/resources/pipelinerunresolution.go 97.0% 97.1% 0.1
pkg/reconciler/pipelinerun/resources/pipelinerunstate.go 99.5% 99.5% 0.0
pkg/reconciler/pipelinerun/resources/resultrefresolution.go 96.2% 98.3% 2.1

@pritidesai
Copy link
Member

/retest

@Yongxuanzhang
Copy link
Member

/retest
#4169

Copy link
Member

@JeromeJu JeromeJu left a comment

Choose a reason for hiding this comment

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

Thanks @EmmaMunley and @pritidesai for the hard work on this!

@tekton-robot
Copy link
Collaborator

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: JeromeJu, pritidesai, Yongxuanzhang

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:
  • OWNERS [Yongxuanzhang,pritidesai]

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@Yongxuanzhang
Copy link
Member

/lgtm

@tekton-robot tekton-robot added the lgtm Indicates that a PR is ready to be merged. label Oct 17, 2023
@tekton-robot tekton-robot merged commit eb7d0ec into tektoncd:main Oct 17, 2023
12 checks passed
@EmmaMunley EmmaMunley deleted the tep-140-produce-results-matrix branch October 17, 2023 18:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. kind/feature Categorizes issue or PR as related to a new feature. lgtm Indicates that a PR is ready to be merged. release-note Denotes a PR that will be considered when it comes time to generate release notes. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Matrix Beta
5 participants