Nota: Actualmente los ejecutores hospedados en GitHub no se admiten en GitHub Enterprise Server. Puede ver más información sobre la compatibilidad futura planeada en GitHub public roadmap.
About re-running workflows and jobs
Re-running a workflow uses the same GITHUB_SHA
(commit SHA) and GITHUB_REF
(Git ref) of the original event that triggered the workflow run. You can re-run a workflow for up to 30 days after the initial run.
Re-running all the jobs in a workflow
-
En your GitHub Enterprise Server instance, vaya a la página principal del repositorio.
-
En el nombre del repositorio, haga clic en Acciones.
-
En la barra lateral izquierda, da clic en el flujo de trabajo que quieras ver.
-
En la lista de ejecuciones de flujo de trabajo, haz clic en el nombre de la ejecución para ver el resumen de la ejecución de flujo de trabajo.
-
In the upper-right corner of the workflow, use the Re-run jobs drop-down menu, and select Re-run all jobs.
Para obtener más información sobre GitHub CLI, vea "Acerca de GitHub CLI".
To re-run a failed workflow run, use the run rerun
subcommand. Replace run-id
with the ID of the failed run that you want to re-run. If you don't specify a run-id
, GitHub CLI returns an interactive menu for you to choose a recent failed run.
gh run rerun RUN_ID
To view the progress of the workflow run, use the run watch
subcommand and select the run from the interactive list.
gh run watch