ipdxco/Job Summary URL
Calculates the job summary URL and other job related URLs which are not available by default
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| repository | The owner and repository name. Defaults to `GITHUB_REPOSITORY`. | yes | ${{ github.repository }} |
| server_url | The URL of the GitHub server. Defaults to `GITHUB_SERVER_URL`. | yes | ${{ github.server_url }} |
| workflow | The name or the id of the workflow. Defaults to `GITHUB_WORKFLOW`. | yes | ${{ github.workflow }} |
| run_id | The id of the workflow run. Or `latest`. Defaults to `GITHUB_RUN_ID`. | yes | ${{ github.run_id }} |
| run_attempt | The number of the attempt of the workflow run. Or `latest`. Defaults to `GITHUB_RUN_ATTEMPT`. | yes | ${{ github.run_attempt }} |
| job | A unique string for the workflow run job. Or `latest`. Defaults to `latest`. | yes | ${{ github.job }} |
Outputs
| name | description |
|---|---|
| run_url | The URL of the run |
| job_url | The URL of the job |
| job_summary_url | The URL of the job summary |
| job_summary_raw_url | The URL of the raw job summary |