beacon-biosignals/Wait for Job
Wait for a specific GitHub Actions workflow job to complete. Can be useful for synchronization between separate workflows.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Activelast commit Mar 3, 2026
- License
- MIT
Pinned Snippet
uses: beacon-biosignals/wait-for-job@38927c8e9d02205ebecd13e7787dde41e9731673 # v1.0.0tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| run-id | The workflow run containing the job to wait for. | yes | — |
| job-name | The rendered workflow job name to wait for. | yes | — |
| timeout | The maximum amount of seconds to wait for the workflow job. | — | 600 |
| poll-interval | Number of seconds between job status checks. | — | 15 |
| repository | The repository runing the workflow. | — | ${{ github.repository }} |
| token | The GitHub token used to authenticate with the GitHub API. Need when attempting to access artifacts in a different repository. | — | ${{ github.token }} |
Outputs
| name | description |
|---|---|
| job-id | The job ID of the job which was waited upon. |
| conclusion | The result of the completed job after `continue-on-error` is applied. Possible values are `success`, `failure`, `cancelled`, or `skipped`. |