ReadMe · Arazzo Workflow

ReadMe Cut A Version And Announce It

Version 1.0.0

Create a branch, upload its API definition, and post a launch changelog.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub DocumentationDeveloper HubAPI ReferencePortalAnalyticsArtificial IntelligenceMCPBi-Directional SyncArazzoWorkflows

Provider

readme

Workflows

release-version
Create a branch, upload its API definition, and announce it in the changelog.
Creates a branch, uploads an API definition to it, and posts a changelog entry announcing the new version.
3 steps inputs: apiKey, branchName, changelogBody, changelogTitle, definition outputs: apiId, branchName, changelogSlug
1
createBranch
{$sourceDescriptions.branchesApi.url}#/paths/~1branches/post
Create the new branch (version) for the release.
2
uploadDefinition
{$sourceDescriptions.apisApi.url}#/paths/~1branches~1{branch}~1apis/post
Upload the API definition that powers the reference docs on the new branch.
3
announceRelease
{$sourceDescriptions.changelogApi.url}#/paths/~1branches~1{branch}~1changelogs/post
Post an "added" changelog entry announcing the new version.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: ReadMe Cut A Version And Announce It
  summary: Create a branch, upload its API definition, and post a launch changelog.
  description: >-
    A full version-launch flow for a ReadMe hub. It creates a new branch, uploads
    the API definition that powers the reference docs on that branch, and then
    posts an "added" changelog entry announcing the new version — taking a release
    from a bare branch to a documented, announced version. 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: apisApi
  url: ../openapi/readme-apis-api-openapi.yml
  type: openapi
- name: branchesApi
  url: ../openapi/readme-branches-api-openapi.yml
  type: openapi
- name: changelogApi
  url: ../openapi/readme-changelog-api-openapi.yml
  type: openapi
workflows:
- workflowId: release-version
  summary: Create a branch, upload its API definition, and announce it in the changelog.
  description: >-
    Creates a branch, uploads an API definition to it, and posts a changelog
    entry announcing the new version.
  inputs:
    type: object
    required:
    - branchName
    - definition
    - changelogTitle
    - changelogBody
    properties:
      branchName:
        type: string
        description: The name of the new branch (version) to create.
      definition:
        type: object
        description: The OpenAPI definition document to upload to the branch.
      changelogTitle:
        type: string
        description: The title of the launch changelog post.
      changelogBody:
        type: string
        description: The Markdown body of the launch changelog post.
      apiKey:
        type: string
        description: ReadMe API key used as a Bearer token.
  steps:
  - stepId: createBranch
    description: Create the new branch (version) for the release.
    operationPath: '{$sourceDescriptions.branchesApi.url}#/paths/~1branches/post'
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.branchName
        isStable: true
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      branchName: $response.body#/name
  - stepId: uploadDefinition
    description: Upload the API definition that powers the reference docs on the new branch.
    operationPath: '{$sourceDescriptions.apisApi.url}#/paths/~1branches~1{branch}~1apis/post'
    parameters:
    - name: branch
      in: path
      value: $steps.createBranch.outputs.branchName
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        schema: $inputs.definition
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      apiId: $response.body#/id
  - stepId: announceRelease
    description: Post an "added" changelog entry announcing the new version.
    operationPath: '{$sourceDescriptions.changelogApi.url}#/paths/~1branches~1{branch}~1changelogs/post'
    parameters:
    - name: branch
      in: path
      value: $steps.createBranch.outputs.branchName
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.changelogTitle
        body: $inputs.changelogBody
        type: added
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      changelogSlug: $response.body#/slug
  outputs:
    branchName: $steps.createBranch.outputs.branchName
    apiId: $steps.uploadDefinition.outputs.apiId
    changelogSlug: $steps.announceRelease.outputs.changelogSlug

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/readme-release-version-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.