act: fix error for running job (#12146)

* act: fix error for running job

---------

Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com>
pull/23/head
iTrooz 2024-01-28 14:30:39 +01:00 committed by GitHub
parent 4da50c10c0
commit e649a5acc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 7 deletions

View File

@ -3,7 +3,7 @@
> Execute des GitHub Actions en local avec Docker.
> Plus d'informations : <https://github.com/nektos/act>.
- Liste les actions disponibles :
- [l]iste les jobs disponibles :
`act -l`
@ -15,9 +15,9 @@
`act {{type_d_événement}}`
- Execute une action spécifique :
- Execute un [j]ob spécifique :
`act -a {{id_action}}`
`act -j {{id_job}}`
- Ne pas lancer les actions maintenant (e.g un essai) :
@ -26,3 +26,7 @@
- Affiche le journal en mode verbeux :
`act -v`
- Execute un [W]orkflow en particulier, avec l'événement push :
`act push -W {{path/to/workflow}}`

View File

@ -3,7 +3,7 @@
> Execute GitHub Actions locally using Docker.
> More information: <https://github.com/nektos/act>.
- [l]ist the available actions:
- [l]ist the available jobs:
`act -l`
@ -15,9 +15,9 @@
`act {{event_type}}`
- Run a specific [a]ction:
- Run a specific [j]ob:
`act -a {{action_id}}`
`act -j {{job_id}}`
- Do [n]ot actually run the actions (i.e. a dry run):
@ -27,6 +27,6 @@
`act -v`
- Run a specific [W]orkflow:
- Run a specific [W]orkflow with the push event:
`act push -W {{path/to/workflow}}`