API changelog #15
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
on: | |
pull_request: | |
paths: | |
- fern/apis/public/openapi-public.yaml | |
- fern/apis/beta/openapi-beta.yaml | |
name: generate-changelog | |
jobs: | |
get-diff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out HEAD rev | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
path: head | |
- name: Check out BASE rev | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.base_ref }} | |
path: base | |
- name: Create dir | |
run: | | |
mkdir changelog | |
- name: Run OpenAPI Diff for public (from HEAD rev) | |
uses: docker://openapitools/openapi-diff:latest | |
with: | |
args: --markdown changelog/public-diff.md base/fern/apis/public/openapi-public.yaml head/fern/apis/public/openapi-public.yaml | |
- name: Run OpenAPI Diff for beta (from HEAD rev) | |
uses: docker://openapitools/openapi-diff:latest | |
with: | |
args: --markdown changelog/beta-diff.md base/fern/apis/beta/openapi-beta.yaml head/fern/apis/beta/openapi-beta.yaml | |
- name: Archive changelogs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: changelog | |
path: changelog/** |