Bump peter-evans/find-comment from 0da1f4fc1f20cd898368bd56089d391df418f52f to b80e3f1127f9f13a42d50c0fc404ed367091084f #1663
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OpenAPI generate decorated schema files | |
# **What it does**: On 'Update OpenAPI Descriptions' PRs opened by github-openapi-bot, this workflow runs the script to generate the decorated OpenAPI files and commit them to the PR. | |
# **Why we have it**: So we can consume OpenAPI changes, decorate them, and publish them to the REST API docs. | |
# **Who does it impact**: Anyone making OpenAPI changes in `github/github`, and wanting to get them published on the docs site. | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
generate-decorated-files: | |
if: github.event.pull_request.user.login == 'github-openapi-bot' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label pull requests with 'github-openapi-bot' | |
uses: rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e | |
with: | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
add-labels: 'github-openapi-bot' | |
- name: Checkout repository code | |
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f | |
with: | |
token: ${{ secrets.DOCUBOT_REPO_PAT }} | |
- name: Setup node | |
uses: actions/setup-node@38d90ce44d5275ad62cc48384b3d8a58c500bb5f | |
with: | |
node-version: 16.8.x | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Decorate the dereferenced OpenAPI schemas | |
run: script/rest/update-files.js --decorate-only | |
- name: Check in the decorated files | |
uses: EndBug/add-and-commit@2bdc0a61a03738a1d1bda24d566ad0dbe3083d87 | |
with: | |
# The arguments for the `git add` command | |
add: 'lib/rest/static/decorated' | |
# The message for the commit | |
message: 'Add decorated OpenAPI schema files' | |
env: | |
# Disable pre-commit hooks; they don't play nicely with add-and-commit | |
HUSKY: '0' |