#90: Updated open API client 2025-04-15 #667
Workflow file for this run
This file contains hidden or 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: Open API | |
on: | |
push: | |
branches-ignore: | |
- "github-pages/*" | |
- "gh-pages/*" | |
pull_request: | |
# check results of former push could be outdated | |
types: [opened, reopened] | |
workflow_dispatch: | |
schedule: | |
# "At 2 am UTC on every day." (https://crontab.guru) | |
- cron: "0 2 * * *" | |
jobs: | |
check-api-outdated: | |
name: Check API Outdated | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: SCM Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python & Poetry Environment | |
uses: exasol/python-toolbox/.github/actions/[email protected] | |
with: | |
poetry-version: 2.0.1 | |
python-version: "3.10" | |
- name: Run Nox Task api:check-outdated | |
run: poetry run nox -s api:check-outdated | |
- name: Report Failure Status to Slack Channel | |
if: ${{ failure() && github.event_name == 'schedule' }} | |
uses: ravsamhq/notify-slack-action@v2 | |
with: | |
status: ${{ job.status }} | |
token: ${{ github.token }} | |
notification_title: "Generated OpenAPI seems to be outdated." | |
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}>" | |
notify_when: "failure,cancelled,warnings,skipped" | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.INTEGRATION_TEAM_SLACK_NOTIFICATION_WEBHOOK }} | |
- name: Upload openapi.json | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: openapi.json | |
path: openapi.json |