We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dabdca commit 029bca8Copy full SHA for 029bca8
1 file changed
.github/workflows/regenerate.yml
@@ -46,11 +46,20 @@ jobs:
46
rm -f openapi.yaml
47
rm -f .github/workflows/python.yml
48
49
+ - uses: actions/setup-python@v5
50
+ with:
51
+ python-version: '3.12'
52
+
53
+ - name: Verify generated client imports
54
+ run: |
55
+ pip install -r requirements.txt
56
+ python -c "import hotdata"
57
58
- name: Create PR
59
uses: peter-evans/create-pull-request@v6
60
with:
61
token: ${{ steps.app-token.outputs.token }}
62
title: "chore: regenerate client from updated OpenAPI spec"
- branch: openapi-update
63
+ branch: openapi-update-${{ github.run_id }}
64
commit-message: "chore: regenerate client from OpenAPI spec"
65
body: "Auto-generated from updated HotData OpenAPI spec."
0 commit comments