github_deployment_events
Events related to GitHub deployments.
-
id
Primary key - Unique identifier for the row
-
source_id
Foreign key - GitHub ID of the deployment event
-
repository_id
Foreign key - ID of the GitHub repository
-
sha
string - Git commit SHA for the deployment
-
ref
string - Git reference for the deployment
-
task
string - Task name for the deployment
-
success
boolean - Boolean indicating if the deployment was successful
-
environment
string - Environment name for the deployment
-
production_environment
boolean - Boolean indicating if this is a production environment
-
created_at
date - Timestamp when the deployment event was created
-
synced_at
date - Timestamp of when the deployment event was last synced.
-
state
string - Latest deployment status state from GitHub (pending, queued, in_progress, success, failure, error, inactive)
-
finished_at
date - Timestamp when the deployment reached a terminal state (success, error, or failure). Used as deployed_at on Deployment records when SETTING_GITHUB_DEPLOYMENTS_USE_FINISHED_AT is enabled.
-
source_url
string - URL of the CI/CD run that performed the deployment. Populated from GitHub's log_url on the deployment status.