Re-run a workflow using the GitHub UI
Las personas con acceso de escritura en el repositorio pueden llevar a cabo estos pasos.
- En GitHub, visita la página principal del repositorio.
- Debajo del nombre de tu repositorio, da clic en Acciones.

- En la barra lateral izquierda, da clic en el flujo de trabajo que quieres ver.

- Debajo de "Ejecuciones de flujo de trabajo", da clic en el nombre de la ejecución que quieres ver.

- In the upper-right corner of the workflow, use the Re-run jobs drop-down menu, and select Re-run all jobs.

Re-run a workflow using CLI de GitHub
For information on setting up CLI de GitHub, see "Managing GitHub Actions with 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, CLI de GitHub 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
