mauscoelho / github-action

GitHub action to deploy your API documentation on Bump

Home Page:https://bump.sh

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deploy API documentation at each code commit, and review diffs

Help | Sign up

Bump.sh helps you build a branded single source of truth, cataloging all your APIs. We’ve created the reference point for teams consuming and building APIs, no matter which technology they rely on.

Bump.sh keeps your API docs always synchronized with your codebase. With this Github Action your API reference is automatically generated - with changelog and diff - on Bump.sh from any OpenAPI or AsyncAPI file.

Table of contents

Usage

Start with creating a documentation on Bump.sh. Then add one of the following workflow file to your GitHub project.

Important: actions/checkout has to be called before this action.

API diff on pull requests

If you only want to have API diff summary sent as a comment on your pull requests:

.github/workflows/bump.yml

name: API diff

on:
  pull_request:
    branches:
      - main

jobs:
  api-diff:
    name: Check API diff on Bump
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Comment pull request with API diff
        uses: bump-sh/github-action@v1
        with:
          doc: <BUMP_DOC_ID>
          token: ${{secrets.BUMP_TOKEN}}
          file: doc/api-documentation.yml
          command: diff
        env:
          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

Important: make sure to change your main destination branch name (main in the example above), replace <BUMP_DOC_ID> with your Bump documentation slug or id and change your api specification file path (doc/api-documentation.yml in the example above).

API diff on pull requests & Deploy on push

This is the most common worklow that we recommend using, which will create two steps in your automation flow: a validation & diff step on code reviews, followed by a deployment step on merged changes.

.github/workflows/bump.yml

name: Check & deploy API documentation

on:
  push:
    branches:
      - main

  pull_request:
    branches:
      - main

jobs:
  deploy-doc:
    if: ${{ github.event_name == 'push' }}
    name: Deploy API documentation on Bump
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Deploy API documentation
        uses: bump-sh/github-action@v1
        with:
          doc: <BUMP_DOC_ID>
          token: ${{secrets.BUMP_TOKEN}}
          file: doc/api-documentation.yml

  api-diff:
    if: ${{ github.event_name == 'pull_request' }}
    name: Check API diff on Bump
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Comment pull request with API diff
        uses: bump-sh/github-action@v1
        with:
          doc: <BUMP_DOC_ID>
          token: ${{secrets.BUMP_TOKEN}}
          file: doc/api-documentation.yml
          command: diff
        env:
          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

Important: make sure to change your main destination branch name (main in the example above), replace <BUMP_DOC_ID> with your Bump documentation slug or id and change your api specification file path (doc/api-documentation.yml in the example above).

Deploy on push

If you only need to deploy the documentation on push you can use this workflow file instead:

.github/workflows/bump.yml

name: Deploy documentation

on:
  push:
    branches:
      - main

jobs:
  deploy-doc:
    name: Deploy API doc on Bump
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Deploy API documentation
        uses: bump-sh/github-action@0.3
        with:
          doc: <BUMP_DOC_ID>
          token: ${{secrets.BUMP_TOKEN}}
          file: doc/api-documentation.yml

Important: make sure to change your main destination branch name (main in the example above), replace <BUMP_DOC_ID> with your Bump.sh documentation slug or id and change your api specification file path (doc/api-documentation.yml in the example above).

Inputs

  • doc (required): Documentation slug or id. Can be found in the documentation settings on https://bump.sh/docs

  • token (required): Do not add your documentation token here, but create an encrypted secret that holds your documentation token.

    • Your Bump.sh token can be found in the documentation settings on https://bump.sh. Copy it for later usage.
    • In your GitHub repository, go to your “Settings”, and then “Secrets”.
    • Click the button “New repository secret”, name the secret BUMP_TOKEN and paste your Bump.sh token in the value field.
  • file: Relative path to the documentation file. Default: api-contract.yml

  • hub (optional): Hub slug or id. Needed when deploying to a documentation attached to a Hub. Can be found in the hub settings on https://bump.sh

  • branch (optional): Branch name used during deploy or diff commands. This can be useful to maintain multiple API reference history and make it available in your API documentation.

  • command: Bump.sh command to execute. Default: deploy

    • deploy: deploy a new version of the documentation
    • diff: automatically comment your pull request with the API diff
    • dry-run: dry-run a deployment of the documentation file
    • preview: create a temporary preview
  • expires (optional): Specify a longer expiration date for public diffs (defaults to 1 day). Use iso8601 format to provide a date, or you can use never to keep the result live indefinitely.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/bump-sh/github-action. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The scripts and documentation in this project are released under the MIT License.

Code of Conduct

Everyone interacting in the Bump github-action project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

About

GitHub action to deploy your API documentation on Bump

https://bump.sh

License:MIT License


Languages

Language:TypeScript 96.9%Language:JavaScript 1.5%Language:Shell 1.3%Language:Dockerfile 0.3%