Create OpenAPI with Snippets #11
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: Create OpenAPI with Snippets | |
on: | |
workflow_dispatch: | |
inputs: | |
pr_title: | |
description: 'Pull Request Title' | |
required: true | |
default: '[Automated] Update OpenAPI Spec' | |
pr_body: | |
description: 'Pull Request Body' | |
required: true | |
default: 'This is an automated pull request to update the OpenAPI specification.' | |
env: | |
FERN_API_KEY: ${{ secrets.FERN_API_KEY }} | |
GITHUB_TOKEN: ${{ secrets.WRITE_GITHUB }} | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
run-snippets: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: Create env file | |
run: | | |
touch .env | |
echo FERN_API_KEY=${{ secrets.FERN_API_KEY }} >> .env | |
- name: Run snippets.js | |
run: node .github/workflows/snippets.js | |
- name: Commit OpenAPI Spec | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: 'openapi.json' | |
author_name: GitHub Action | |
author_email: actions@github.com | |
message: 'Update OpenAPI specification' | |
push: 'origin main --force' |