GitHub Actions · Schema

GitHub Actions Workflow Run

Represents a single execution of a GitHub Actions workflow.

Properties

Name Type Description
id integer The unique identifier of the workflow run.
name stringnull The name of the workflow run.
node_id string The GraphQL node ID of the workflow run.
head_branch stringnull The branch associated with the workflow run's head commit.
head_sha string The SHA of the head commit that points to the version of the workflow being run.
path string The path of the workflow file.
display_title string The title of the workflow run as displayed in the GitHub UI.
run_number integer The auto-incrementing run number for the workflow run.
run_attempt integer Attempt number of the run. 1 for the first attempt and higher if the workflow was re-run.
event string The event that triggered the workflow run.
status stringnull The current status of the workflow run.
conclusion stringnull The result of the completed workflow run.
workflow_id integer The ID of the parent workflow.
url string The API URL of the workflow run.
html_url string The HTML URL of the workflow run on GitHub.
created_at string The date and time the workflow run was created.
updated_at string The date and time the workflow run was last updated.
run_started_at string The date and time the workflow run started executing.
jobs_url string The API URL for the jobs in this workflow run.
logs_url string The API URL for the logs of this workflow run.
artifacts_url string The API URL for the artifacts of this workflow run.
cancel_url string The API URL to cancel this workflow run.
rerun_url string The API URL to re-run this workflow run.
workflow_url string The API URL of the parent workflow.
actor object The user who triggered the workflow run.
triggering_actor object The user who triggered the workflow run (may differ from actor for re-runs).
head_commit objectnull The head commit for the workflow run.
View JSON Schema on GitHub