Cross-Provider Workflow

Sysdig Secure Runtime Event to GitHub Issue and Slack

Version 1.0.0

Pull a Sysdig Secure runtime event, open a GitHub issue, and notify Slack.

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

Providers Orchestrated

sysdig github slack

Workflows

runtime-event-multi-notify
Get a Sysdig runtime event, open a GitHub issue, and notify Slack.
Retrieves Sysdig Secure runtime detection events, creates a GitHub issue to track the incident, and posts a Slack notification.
3 steps inputs: owner, repo, slackChannel outputs: eventTotal, issueUrl, messageTs
1
list-events
$sourceDescriptions.sysdigSecureApi.listSecureEvents
Retrieve Sysdig Secure runtime detection events.
2
open-issue
$sourceDescriptions.githubRepoIssuesApi.createAnIssue
Open a GitHub issue to track the runtime detection.
3
notify-slack
$sourceDescriptions.slackChatApi.postChatPostmessage
Post a Slack notification linking the runtime event to its tracking issue.

Source API Descriptions

Arazzo Workflow Specification

sec-sysdig-secure-event-multi-notify.yml Raw ↑
arazzo: 1.0.1
info:
  title: Sysdig Secure Runtime Event to GitHub Issue and Slack
  summary: Pull a Sysdig Secure runtime event, open a GitHub issue, and notify Slack.
  description: >-
    A runtime security workflow that retrieves Sysdig Secure runtime detection events, opens
    a GitHub issue to track the incident, and posts a notification to a Slack channel so the
    security team responds quickly. Demonstrates fanning a single runtime detection out to a
    code host and a chat platform in one Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: sysdigSecureApi
    url: https://raw.githubusercontent.com/api-evangelist/sysdig/refs/heads/main/openapi/sysdig-activity-audit-api-openapi.yml
    type: openapi
  - name: githubRepoIssuesApi
    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: runtime-event-multi-notify
    summary: Get a Sysdig runtime event, open a GitHub issue, and notify Slack.
    description: >-
      Retrieves Sysdig Secure runtime detection events, creates a GitHub issue to track the
      incident, and posts a Slack notification.
    inputs:
      type: object
      properties:
        owner:
          type: string
        repo:
          type: string
        slackChannel:
          type: string
    steps:
      - stepId: list-events
        description: Retrieve Sysdig Secure runtime detection events.
        operationId: $sourceDescriptions.sysdigSecureApi.listSecureEvents
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          eventTotal: $response.body#/total
          events: $response.body#/data
      - stepId: open-issue
        description: Open a GitHub issue to track the runtime detection.
        operationId: $sourceDescriptions.githubRepoIssuesApi.createAnIssue
        parameters:
          - name: owner
            in: path
            value: $inputs.owner
          - name: repo
            in: path
            value: $inputs.repo
        requestBody:
          contentType: application/json
          payload:
            title: Sysdig Secure runtime detection event
            body: A Sysdig Secure runtime event was detected and requires investigation.
            labels:
              - security
              - runtime
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          issueNumber: $response.body#/number
          issueUrl: $response.body#/html_url
      - stepId: notify-slack
        description: Post a Slack notification linking the runtime event to its tracking issue.
        operationId: $sourceDescriptions.slackChatApi.postChatPostmessage
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            channel: $inputs.slackChannel
            text: Sysdig Secure runtime detection logged and tracked in GitHub.
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          messageTs: $response.body#/ts
    outputs:
      eventTotal: $steps.list-events.outputs.eventTotal
      issueUrl: $steps.open-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/sec-sysdig-secure-event-multi-notify"
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.