-
Notifications
You must be signed in to change notification settings - Fork 110
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
refactor(pkg/jenkins): change the state update logic #354
refactor(pkg/jenkins): change the state update logic #354
Conversation
- keep the prow job be `triggered` state until the jenkins build is running. - only set the prow job be `pending` state when the jenkins build is running rather then the jenkins build enqueued. Signed-off-by: wuhuizuo <[email protected]>
Hi @wuhuizuo. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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-sigs/prow repository. |
✅ Deploy Preview for k8s-prow ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
/ok-to-test |
Signed-off-by: wuhuizuo <[email protected]>
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.
I think it's reasonable change.
Probably approver will ask you to squash commits so you may want to do that. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jmguzik, petr-muller, wuhuizuo 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 |
This can improved Jenkins type CI status display for better user experience.
triggered
when the Jenkins build is still in queue.pending
state when the Jenkins build is running.Previous Situation:
When a CI job was triggered, the status would show "Pending - Jenkins job enqueued" for running jobs, which could be misleading as it suggested the job hadn't started yet, and there are no links to view during the run.
This refactoring effect:
Running CI jobs now display "Pending - Jenkins job running" with detail url provided.