Skip to content

Generate SDK

Generate SDK #46

Workflow file for this run

name: Generate SDK
on:
workflow_dispatch:
schedule:
- cron: "0 12 * * *"
permissions:
contents: write
pull-requests: write
jobs:
generate-client:
runs-on: ubuntu-latest
name: Generate Python SDK
steps:
- uses: actions/create-github-app-token@v1
id: generate-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: actions/checkout@v4
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.8.3"
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install node dependencies
run: npm ci
- name: Generate new sdk
run: make generate
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
token: ${{ steps.generate-token.outputs.token }}
branch: update-sdk
delete-branch: true
labels: bot
title: "Update Python SDK"
commit-message: "ci: Update python-sdk"
body: "New [API](https://api.vulncheck.com/v3/openapi) changes have been detected."