https://github.com/austenstone/job-id
Get the GitHub Actions job id as job_id
https://github.com/austenstone/job-id
actions github
Last synced: 3 months ago
JSON representation
Get the GitHub Actions job id as job_id
- Host: GitHub
- URL: https://github.com/austenstone/job-id
- Owner: austenstone
- License: mit
- Created: 2024-05-07T22:17:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-08T14:48:29.000Z (about 2 years ago)
- Last Synced: 2025-11-17T18:25:54.671Z (7 months ago)
- Topics: actions, github
- Homepage:
- Size: 438 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Get Job ID Action
GitHub doesn't provide the job id anywhere so here's a simple action to get the job id for the current job.
## Usage
Calling the action in the job you want to get the job id for. Provide an ID for the step so you can reference the output.
#### Example
```yml
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: austenstone/job-id@v1
id: job-id
- run: echo $GITHUB_JOB_ID
env:
GITHUB_JOB_ID: ${{ steps.job-id.outputs.job-id }}
```
## ➡️ Inputs
Various inputs are defined in [`action.yml`](action.yml):
| Name | Description | Default |
| --- | - | - |
| github‑token | Token to use to authorize. | ${{ github.token }} |
## ⬅️ Outputs
| Name | Description |
| --- | - |
| job-id | The job id for the current job. |
## Further help
To get more help on the Actions see [documentation](https://docs.github.com/en/actions).