-
-
Notifications
You must be signed in to change notification settings - Fork 288
Description
Is your feature request related to a problem? Please describe.
Checks might fail due to a temporary failure in an backend or other infrastructure especially if we're considering integration test, the only way to fix failed check - is to rerun it. UI interface allows to re-run individual job or all failed jobs in a workflow, would be great to have such functionality in this cool application
Describe the solution you'd like
Add a command available to a PR - restart all checks or restart failed checks if there are some failed checks. These commands could be added to cntextual menu for a PR. Command "Rerun failed jobs" should be available if all checks are finished and some of them reported failed status. Command "Rerun all jobs" should be always available.
At least would be good to see a list of run ids for all the check runs to easily copy them into gh command gh run rerun run-id --failed
to re-run failed jobs
Describe alternatives you've considered
Alternative - use UI interface for this or use command gh run rerun run-id --failed
which runs failed jobs.