← Back to changelog
Feb 27, 2026

Actionable Push Notifications: Tap to Open URL, Long-Press for Actions (Open URL or Webhook)

Actionable push notifications with tap redirection and long-press actions

Push Notifications now support optional redirection and actions fields.

Use redirection to open a URL when a user taps the notification. Use actions to show up to four buttons on long-press.

What’s new

  • redirection: HTTPS URL opened on notification tap.
  • actions: up to 4 action buttons shown on long-press.
  • Action type:
    • open_url: opens the provided URL in browser.
    • webhook: triggers backend webhook call (GET or POST).

Availability

This feature is available in the ActivitySmith iOS app version 1.1.0 and newer.

Example payload

{
"title": "Build Failed 🚨",
"message": "CI pipeline failed on main branch",
"redirection": "https://github.com/org/repo/actions/runs/123456789",
"actions": [
{
"title": "Open Failing Run",
"type": "open_url",
"url": "https://github.com/org/repo/actions/runs/123456789"
},
{
"title": "Create Incident",
"type": "webhook",
"url": "https://hooks.example.com/incidents/create",
"method": "POST",
"body": {
"service": "payments-api",
"severity": "high"
}
}
]
}

All SDKs, CLI, and the GitHub Action now support these optional fields in push notification requests.