Swagger notiication #6
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: pr-check | |
on: | |
pull_request: | |
branches: [ swagger_docs ] | |
workflow_dispatch: | |
jobs: | |
diff: | |
name: OpenAPI diff | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Check out head branch | |
uses: actions/checkout@v4 | |
with: | |
path: head | |
- name: Check out swagger_docs branch | |
uses: actions/checkout@v4 | |
with: | |
ref: swagger_docs | |
path: base | |
fetch-depth: 2 | |
- run: cd base && git checkout HEAD^ | |
- name: Run OpenAPI Diff (from HEAD revision) | |
uses: docker://openapitools/openapi-diff:latest | |
with: | |
args: --json diff.json base/latest.json head/latest.json | |
- name: print diff | |
run: cat diff.json | |
- name: Upload to slack step | |
uses: adrey/slack-file-upload-action@master | |
with: | |
token: ${{ secrets.SLACK_BOT_TOKEN }} | |
path: diff.json | |
channel: fx_api_changes |