Raxx · internal docs

internal · gated ↑ index

Slack Integration for Repo Updates

This guide wires GitHub Actions results to a Slack channel.

Option 1 (Fastest): Incoming Webhook + Workflow

Use this with .github/workflows/slack-notify.yml.

1) Create a Slack incoming webhook

  1. Go to https://api.slack.com/apps and create/select your Slack app.
  2. Enable Incoming Webhooks.
  3. Add a new webhook to the target channel.
  4. Copy the webhook URL.

2) Add GitHub repository secret

In GitHub repository settings:

  1. Go to Settings -> Secrets and variables -> Actions.
  2. Create secret: - Name: SLACK_WEBHOOK_URL - Value: webhook URL from Slack

3) Trigger and verify

Slack-style status path used by CI

Option 2: GitHub Slack App (No custom workflow required)

  1. Install the GitHub app from Slack App Directory.
  2. In your Slack channel, run: - /github subscribe raxx-app/TradeMasterAPI
  3. Enable the events you want (PRs, issues, deployments, etc.).

This is simpler, but message format is less customizable than webhook + workflow.

Notes