Swagger notiication #10
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 --text diff.txt base/latest.json head/latest.json | |
- name: print diff | |
run: | | |
echo "{\"text\": \"test\", \"changes\": $(cat diff.json)}" > result.json | |
- name: Send custom JSON data to Slack workflow | |
id: slack | |
uses: slackapi/[email protected] | |
with: | |
channel-id: 'fx_api_changes' | |
payload-file-path: "./result.json" | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
# - 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 |