GitHub Actions

Receive workflow run notifications and log deployments as changes to correlate with incidents.

InboundCI/CD & DevOps
Start Free Trial

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

1.In your GitHub repo, go to Settings → Webhooks
2.Click Add webhook
3.Set Payload URL to the webhook URL above
4.Set Content type to application/json
5.Set a Secret and enter the same value in the HMAC Secret field above
6.Under Events, select Workflow runs
7.Click Add webhook

Example 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 StatusGitHub Actions Values
operational
completed
down
failure

Track Deployments from GitHub Actions

Track changes for incident correlation and AI root cause analysis

  1. 1Go to your GitHub repo → Settings → Webhooks → Add webhook
  2. 2Set Payload URL to your Alert24 Changes Webhook URL (found on the service page)
  3. 3Set Content type to application/json
  4. 4Select events: Pushes, Releases
  5. 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