Cross-Provider Workflow

Sentry Issue to GitHub Issue to Slack

Version 1.0.0

Pull the latest Sentry issue, open a GitHub issue, then notify Slack.

1 workflow 3 source APIs 3 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

sentry github slack

Workflows

sentry-issue-to-github-to-slack
List a Sentry issue, open a GitHub issue, and notify Slack.
Retrieves open issues for a Sentry organization, opens a GitHub issue that references the top Sentry error, and posts a Slack message with the link.
3 steps inputs: organizationSlug, owner, repo, slackChannel outputs: issueNumber, issueUrl, messageTs, sentryIssueId
1
list-sentry-issues
$sourceDescriptions.sentryApi.listOrganizationIssues
List open issues for the Sentry organization.
2
open-github-issue
$sourceDescriptions.githubIssues.createAnIssue
Open a GitHub issue referencing the Sentry error.
3
notify-slack
$sourceDescriptions.slackChat.postChatPostmessage
Notify the triage Slack channel with the issue link.

Source API Descriptions

Arazzo Workflow Specification

dev-sentry-issue-to-github-issue-slack.yml Raw ↑
arazzo: 1.0.1
info:
  title: Sentry Issue to GitHub Issue to Slack
  summary: Pull the latest Sentry issue, open a GitHub issue, then notify Slack.
  description: >-
    A DevOps error-triage workflow that lists open issues for a Sentry
    organization, opens a corresponding GitHub tracking issue for the top
    error, and posts a Slack notification with a link so the team can begin
    triage. Demonstrates chaining an error-monitoring provider, a source-control
    provider, and a chat provider in a single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: sentryApi
    url: https://raw.githubusercontent.com/api-evangelist/sentry/refs/heads/main/openapi/sentry-issues-api-openapi.yml
    type: openapi
  - name: githubIssues
    url: https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/openapi/_original/github-repo-issues-api-openapi.yml
    type: openapi
  - name: slackChat
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-chat-api-openapi.yml
    type: openapi
workflows:
  - workflowId: sentry-issue-to-github-to-slack
    summary: List a Sentry issue, open a GitHub issue, and notify Slack.
    description: >-
      Retrieves open issues for a Sentry organization, opens a GitHub issue that
      references the top Sentry error, and posts a Slack message with the link.
    inputs:
      type: object
      properties:
        organizationSlug:
          type: string
        owner:
          type: string
        repo:
          type: string
        slackChannel:
          type: string
    steps:
      - stepId: list-sentry-issues
        description: List open issues for the Sentry organization.
        operationId: $sourceDescriptions.sentryApi.listOrganizationIssues
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          sentryIssueId: $response.body#/0/id
          sentryTitle: $response.body#/0/title
          sentryPermalink: $response.body#/0/permalink
      - stepId: open-github-issue
        description: Open a GitHub issue referencing the Sentry error.
        operationId: $sourceDescriptions.githubIssues.createAnIssue
        requestBody:
          contentType: application/json
          payload:
            title: $steps.list-sentry-issues.outputs.sentryTitle
            body: $steps.list-sentry-issues.outputs.sentryPermalink
            labels:
              - bug
              - sentry
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          issueNumber: $response.body#/number
          issueUrl: $response.body#/html_url
      - stepId: notify-slack
        description: Notify the triage Slack channel with the issue link.
        operationId: $sourceDescriptions.slackChat.postChatPostmessage
        requestBody:
          contentType: application/json
          payload:
            channel: $inputs.slackChannel
            text: $steps.open-github-issue.outputs.issueUrl
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          messageTs: $response.body#/ts
    outputs:
      sentryIssueId: $steps.list-sentry-issues.outputs.sentryIssueId
      issueNumber: $steps.open-github-issue.outputs.issueNumber
      issueUrl: $steps.open-github-issue.outputs.issueUrl
      messageTs: $steps.notify-slack.outputs.messageTs

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/dev-sentry-issue-to-github-issue-slack"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.