Integrations

Connect ReleaseGlow with your development workflow

ReleaseGlow plugs into the tools your team already uses. Each integration below covers a different point in the release pipeline: pulling source material from your repos, distributing release notes to chat channels, and triggering downstream automations.

GitHub Integration

Automatically import commit messages and pull request titles from your GitHub repository when drafting a new release note. ReleaseGlow respects conventional commits and parses semantic version tags.

  1. Go to Settings → Integrations → GitHub
  2. Click "Connect GitHub"
  3. Authorize ReleaseGlow to access your repositories
  4. Select the repository to sync
  5. When creating an entry, click "Import from GitHub" to fetch recent commits

Slack Integration

Push every published release note to a Slack channel. Use the integration to notify customer-facing teams (support, success, sales) when a release ships, without copy-pasting from the dashboard.

  1. Go to Settings → Integrations → Slack
  2. Click "Add to Slack" and authorize the workspace
  3. Pick the default channel for changelog notifications
  4. Optional: configure per-project channels for multi-product setups
  5. Each new published entry now posts a formatted message to the channel

Linear Integration

Sync completed Linear issues directly into changelog drafts. The integration turns shipped tickets into release-note-ready entries, with the AI rewrite pass handling the user-facing language.

  1. Go to Settings → Integrations → Linear
  2. Connect your Linear workspace via OAuth
  3. Select which teams or projects to sync
  4. Filter by status (Done, Released) and label to control what enters the changelog
  5. Drafts auto-populate when issues hit the configured status

Jira Integration

Pull issues, stories, and bug reports from Jira into your changelog draft editor. The integration supports both Jira Cloud and Jira Server with API token authentication.

  1. Go to Settings → Integrations → Jira
  2. Provide your Jira site URL and an API token
  3. Pick the project keys to sync
  4. Use JQL filters to narrow what enters the changelog (e.g., issuetype = Story AND status = Released)
  5. Click "Import from Jira" in the entry editor to pull matching issues

Zapier Integration

Connect ReleaseGlow to 5,000+ apps via Zapier. Trigger Zaps on changelog events (entry published, announcement created) or use Zaps to feed external data into ReleaseGlow drafts.

  1. Go to Settings → Integrations → Zapier
  2. Generate an API key for the Zapier integration
  3. In Zapier, search for "ReleaseGlow" and authenticate with the key
  4. Pick triggers (entry.published, announcement.created) or actions (create entry, publish entry)
  5. Build your Zap with any of the 5,000+ supported apps

Webhooks

For everything not covered by a native integration, use raw webhooks to send real-time notifications to your own services when events occur (new entry published, announcement created, scheduled entry fired).

{
  "event": "entry.published",
  "timestamp": "2026-05-04T10:30:00Z",
  "data": {
    "id": "entry_123",
    "title": "Dark Mode & Bug Fixes",
    "category": "new",
    "url": "https://releaseglow.com/changelog/..."
  }
}