GitHub · Arazzo Workflow

GitHub Star a Gist and Leave Feedback

Version 1.0.0

Star a gist to bookmark it, then post a feedback comment on it.

1 workflow 1 source API 1 provider
View Spec View on GitHub CodePipelinesPlatformSoftware DevelopmentSource ControlT1ArazzoWorkflows

Provider

github

Workflows

star-and-comment-gist
Star a gist then post a feedback comment on it.
Stars a gist and then posts a comment on the same gist with feedback.
2 steps inputs: comment, gistId, githubToken outputs: commentId, commentUrl
1
starGist
stargist
Star the gist to bookmark it. Returns 204 No Content on success.
2
commentOnGist
creategistComment
Add a feedback comment to the starred gist.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: GitHub Star a Gist and Leave Feedback
  summary: Star a gist to bookmark it, then post a feedback comment on it.
  description: >-
    A lightweight gist engagement pattern. The workflow stars a gist to bookmark
    it and then posts a feedback comment on that same gist. Starring returns a
    204 No Content response, so the flow proceeds on that documented status.
    Every step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: githubGistsApi
  url: ../openapi/_original/github-gists-openapi.yml
  type: openapi
workflows:
- workflowId: star-and-comment-gist
  summary: Star a gist then post a feedback comment on it.
  description: >-
    Stars a gist and then posts a comment on the same gist with feedback.
  inputs:
    type: object
    required:
    - githubToken
    - gistId
    - comment
    properties:
      githubToken:
        type: string
        description: A GitHub token with gist scope, passed as a Bearer credential.
      gistId:
        type: string
        description: The identifier of the gist to star and comment on.
      comment:
        type: string
        description: The feedback comment body to add to the gist.
  steps:
  - stepId: starGist
    description: Star the gist to bookmark it. Returns 204 No Content on success.
    operationId: stargist
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.githubToken
    - name: gist_id
      in: path
      value: $inputs.gistId
    successCriteria:
    - condition: $statusCode == 204
  - stepId: commentOnGist
    description: Add a feedback comment to the starred gist.
    operationId: creategistComment
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.githubToken
    - name: gist_id
      in: path
      value: $inputs.gistId
    requestBody:
      contentType: application/json
      payload:
        body: $inputs.comment
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      commentId: $response.body#/id
      commentUrl: $response.body#/url
  outputs:
    commentId: $steps.commentOnGist.outputs.commentId
    commentUrl: $steps.commentOnGist.outputs.commentUrl

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/github-star-and-comment-gist-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.