actiond_job_wait
Block until a CI/CD job reaches a terminal status and return its full details, with an optional timeout to avoid indefinite waiting.
Instructions
Block until the given CI/CD job reaches a terminal status (done/failed/error/cancelled), then return the full job detail. Call it right after a push surfaces job IDs — for example, immediately after "lgh up" reports triggered_job_ids. The optional timeout in seconds (default 300) aborts the wait with an error if the job is still unfinished; it never cancels the job itself. Prefer this over polling actiond_action_get; use actiond_job_cancel to abort a stuck job instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Job ID to wait for | |
| timeout | No | Timeout in seconds (default 300) |