Cross-Provider Workflow

GitHub Issue to Slack Alert

Version 1.0.0

File a GitHub issue, then alert the team in a Slack channel.

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

Providers Orchestrated

github slack

Workflows

issue-to-slack-alert
Create a GitHub issue, then post a Slack alert with its url.
Creates an issue in a GitHub repository and posts a Slack message linking to the new issue so the team is alerted.
2 steps inputs: body, owner, repo, slackChannel, title outputs: issueUrl, messageTs
1
create-issue
$sourceDescriptions.githubIssuesApi.createAnIssue
File a new issue in the GitHub repository.
2
alert-slack
$sourceDescriptions.slackChatApi.postChatPostmessage
Post a Slack alert linking to the new issue.

Source API Descriptions

Arazzo Workflow Specification

prod-github-issue-to-slack-alert-workflow.yml Raw ↑
arazzo: 1.0.1
info:
  title: GitHub Issue to Slack Alert
  summary: File a GitHub issue, then alert the team in a Slack channel.
  description: >-
    A productivity and internal-ops workflow that opens a GitHub issue and
    immediately posts an alert to a Slack channel with a link, so the team is
    notified the moment new work is filed. Demonstrates chaining a source-control
    provider and a messaging provider in a single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: githubIssuesApi
    url: https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/openapi/_original/github-repo-issues-api-openapi.yml
    type: openapi
  - name: slackChatApi
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-chat-api-openapi.yml
    type: openapi
workflows:
  - workflowId: issue-to-slack-alert
    summary: Create a GitHub issue, then post a Slack alert with its url.
    description: >-
      Creates an issue in a GitHub repository and posts a Slack message linking
      to the new issue so the team is alerted.
    inputs:
      type: object
      properties:
        owner:
          type: string
        repo:
          type: string
        title:
          type: string
        body:
          type: string
        slackChannel:
          type: string
    steps:
      - stepId: create-issue
        description: File a new issue in the GitHub repository.
        operationId: $sourceDescriptions.githubIssuesApi.createAnIssue
        parameters:
          - name: owner
            in: path
            value: $inputs.owner
          - name: repo
            in: path
            value: $inputs.repo
        requestBody:
          contentType: application/json
          payload:
            title: $inputs.title
            body: $inputs.body
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          issueUrl: $response.body#/html_url
          issueNumber: $response.body#/number
      - stepId: alert-slack
        description: Post a Slack alert linking to the new issue.
        operationId: $sourceDescriptions.slackChatApi.postChatPostmessage
        requestBody:
          contentType: application/json
          payload:
            channel: $inputs.slackChannel
            text: $steps.create-issue.outputs.issueUrl
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          messageTs: $response.body#/ts
    outputs:
      issueUrl: $steps.create-issue.outputs.issueUrl
      messageTs: $steps.alert-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/prod-github-issue-to-slack-alert-workflow"
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.