octokit/openapi release #214
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: Update | |
"on": | |
repository_dispatch: | |
types: | |
- octokit/openapi release | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version of https://www.npmjs.com/package/@octokit/openapi | |
required: true | |
jobs: | |
update_routes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: 16 | |
- run: git checkout routes-update || true | |
- run: npm ci | |
- run: rm -rf docs/ | |
- run: npm run update-endpoints | |
if: github.event_name == 'repository_dispatch' | |
env: | |
VERSION: ${{ github.event.client_payload.release.tag_name }} | |
- run: npm run update-endpoints | |
if: github.event_name == 'workflow_dispatch' | |
env: | |
VERSION: ${{ github.event.inputs.version }} | |
- name: Create Pull Request | |
uses: gr2m/create-or-update-pull-request-action@v1.x | |
env: | |
GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }} | |
with: | |
title: 🚧 GitHub OpenAPI specifications changed | |
body: > | |
Make sure to update the commits so that the merge results in helpful | |
release notes, see [Merging the Pull Request & releasing a new | |
version](https://github.com/octokit/rest.js/blob/main/CONTRIBUTING.md#merging-the-pull-request--releasing-a-new-version). | |
In general | |
- Avoid breaking changes at all costs | |
- If there are no typescript or code changes, use a `docs` prefix | |
- If there are typescript changes but no code changes, use | |
`fix(typescript)` prefix | |
- If there are code changes, use `fix` if a problem was resolved, | |
`feat` if new endpoints / parameters were added, and | |
`feat(deprecation)` if a method was deprecated. | |
branch: openapi-update | |
commit-message: WIP octokit/openapi updated | |
author: Octokit Bot <33075676+octokitbot@users.noreply.github.com> | |
labels: "Type: Maintenance" |