GitHub Actions
Receive workflow run notifications and log deployments as changes to correlate with incidents.
Quick Setup
Copy Webhook URL
Go to your Alert24 dashboard and copy the webhook URL for GitHub Actions.
Configure GitHub Actions
Add the webhook URL in your GitHub Actions settings.
Auto-Detected
Alert24 auto-detects GitHub Actions payloads and maps them to incidents.
Step-by-Step Setup Instructions
GitHub Actions Webhook Setup
application/jsonExample Webhook Payload
This is a sample payload that GitHub Actions sends to Alert24 when an alert fires.
{
"action": "completed",
"workflow_run": {
"id": 12345,
"name": "Deploy to Production",
"status": "completed",
"conclusion": "failure",
"html_url": "https://github.com/org/repo/actions/runs/12345",
"head_branch": "main",
"event": "push"
},
"repository": {
"full_name": "org/repo"
}
}How Alert24 Maps GitHub Actions Data
Status Field
action
Message Field
workflow_run.name
Auto-Create Incidents
Yes
Auto-Resolve Incidents
Yes
Status Mapping
| Alert24 Status | GitHub Actions Values |
|---|---|
| operational | completed |
| down | failure |
Track Deployments from GitHub Actions
Track changes for incident correlation and AI root cause analysis
- 1Go to your GitHub repo → Settings → Webhooks → Add webhook
- 2Set Payload URL to your Alert24 Changes Webhook URL (found on the service page)
- 3Set Content type to application/json
- 4Select events: Pushes, Releases
- 5Click Add webhook
Alert24 auto-detects GitHub push and release events. Every push to your repo is logged as a change with commit SHA, branch, author, and message.
# Or add a step to your GitHub Actions workflow:
- name: Log deployment to Alert24
if: success()
run: |
curl -s -X POST "${{ secrets.ALERT24_CHANGES_URL }}" \
-H "Content-Type: application/json" \
-d '{
"summary": "Deploy ${{ github.sha }}",
"change_type": "deployment",
"commit_sha": "${{ github.sha }}",
"branch": "${{ github.ref_name }}",
"changed_by": "${{ github.actor }}"
}'Changes are logged per service. Copy the Changes Webhook URL from your service page in Alert24. When an incident occurs, recent changes are surfaced automatically with AI-powered root cause analysis. Learn more →
Connect GitHub Actions to Alert24 in minutes
Free plan includes 5 monitors, 1 status page, and incident management. No credit card required.
More CI/CD & DevOps Integrations
GitHub
InboundLog pull request merges, pushes, and releases as changes for incident correlation.
GitLab CI
InboundReceive pipeline notifications and log deployments as changes to correlate with incidents.
CircleCI
InboundReceive job notifications and log deployments as changes to correlate with incidents.
Terraform Cloud
InboundReceive run notifications and log infrastructure changes to correlate with incidents.
Jenkins
InboundReceive build notifications and log deployments as changes to correlate with incidents.
Azure DevOps
InboundReceive pipeline and release notifications and log deployments as changes for incident correlation.