-
Notifications
You must be signed in to change notification settings - Fork 222
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
Using Tekton for CD - dealing with out of order execution #733
Comments
You might be interested in #716 |
Issues go stale after 90d of inactivity. /lifecycle stale Send feedback to tektoncd/plumbing. |
Stale issues rot after 30d of inactivity. /lifecycle rotten Send feedback to tektoncd/plumbing. |
Rotten issues close after 30d of inactivity. /close Send feedback to tektoncd/plumbing. |
@tekton-robot: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
I would like to ask for the recommended solution/best practices for handling the following scenario:
Our Tekton pipeline processes Github repo push events for Continuous Delivery. However, if there are multiple commits happening at once,
PiplineRun
s may finish out of order. Additionally, multiple commits happening at the same time can be collapsed into a singlePipelineRun
(as we only care about the newest commit).Is there an idiomatic way to express:
for
every new Github event - mark it as "pending"if
aPipelineRun
for a given repo is not yet running:else
The text was updated successfully, but these errors were encountered: