Cross-Provider Workflow

GitHub Dependabot Alert to Opsgenie to Microsoft Teams

Version 1.0.0

Pull a Dependabot alert, raise an Opsgenie alert, then announce in Teams.

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

Providers Orchestrated

github opsgenie microsoft-teams

Workflows

dependabot-to-opsgenie-to-teams
List a Dependabot alert, raise an Opsgenie alert, and announce in Teams.
Retrieves Dependabot alerts for a repository, raises an Opsgenie alert for the top vulnerability, and posts a Microsoft Teams message about it.
3 steps inputs: channelId, owner, repo, teamId outputs: advisorySummary, messageId, requestId
1
list-dependabot-alerts
$sourceDescriptions.githubDependabot.listDependabotAlertsForRepository
List Dependabot vulnerability alerts for the repository.
2
raise-opsgenie-alert
$sourceDescriptions.opsgenieAlert.createAlert
Raise an Opsgenie alert for the Dependabot finding.
3
announce-teams
$sourceDescriptions.microsoftTeams.sendChannelMessage
Announce the Dependabot alert in a Microsoft Teams channel.

Source API Descriptions

Arazzo Workflow Specification

dev-github-dependabot-vuln-to-opsgenie-teams.yml Raw ↑
arazzo: 1.0.1
info:
  title: GitHub Dependabot Alert to Opsgenie to Microsoft Teams
  summary: Pull a Dependabot alert, raise an Opsgenie alert, then announce in Teams.
  description: >-
    A DevSecOps supply-chain workflow that lists Dependabot vulnerability alerts
    for a GitHub repository, raises an Opsgenie alert for the top finding, and
    announces it in a Microsoft Teams channel. Demonstrates chaining a
    source-control provider, an alerting provider, and a collaboration provider
    in a single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: githubDependabot
    url: https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/openapi/_original/github-repo-dependabot-api-openapi.yml
    type: openapi
  - name: opsgenieAlert
    url: https://raw.githubusercontent.com/api-evangelist/opsgenie/refs/heads/main/openapi/opsgenie-alerts-api-openapi.yml
    type: openapi
  - name: microsoftTeams
    url: https://raw.githubusercontent.com/api-evangelist/microsoft-teams/refs/heads/main/openapi/microsoft-teams-messages-api-openapi.yml
    type: openapi
workflows:
  - workflowId: dependabot-to-opsgenie-to-teams
    summary: List a Dependabot alert, raise an Opsgenie alert, and announce in Teams.
    description: >-
      Retrieves Dependabot alerts for a repository, raises an Opsgenie alert for
      the top vulnerability, and posts a Microsoft Teams message about it.
    inputs:
      type: object
      properties:
        owner:
          type: string
        repo:
          type: string
        teamId:
          type: string
        channelId:
          type: string
    steps:
      - stepId: list-dependabot-alerts
        description: List Dependabot vulnerability alerts for the repository.
        operationId: $sourceDescriptions.githubDependabot.listDependabotAlertsForRepository
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          advisorySummary: $response.body#/0/security_advisory/summary
          alertUrl: $response.body#/0/html_url
      - stepId: raise-opsgenie-alert
        description: Raise an Opsgenie alert for the Dependabot finding.
        operationId: $sourceDescriptions.opsgenieAlert.createAlert
        requestBody:
          contentType: application/json
          payload:
            message: $steps.list-dependabot-alerts.outputs.advisorySummary
            priority: P2
            tags:
              - dependabot
              - supply-chain
        successCriteria:
          - condition: $statusCode == 202
        outputs:
          requestId: $response.body#/requestId
      - stepId: announce-teams
        description: Announce the Dependabot alert in a Microsoft Teams channel.
        operationId: $sourceDescriptions.microsoftTeams.sendChannelMessage
        requestBody:
          contentType: application/json
          payload:
            body:
              contentType: html
              content: $steps.list-dependabot-alerts.outputs.alertUrl
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          messageId: $response.body#/id
    outputs:
      advisorySummary: $steps.list-dependabot-alerts.outputs.advisorySummary
      requestId: $steps.raise-opsgenie-alert.outputs.requestId
      messageId: $steps.announce-teams.outputs.messageId

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-github-dependabot-vuln-to-opsgenie-teams"
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.