We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f253700 commit a8b3e24Copy full SHA for a8b3e24
1 file changed
.github/workflows/sync-api.yml
@@ -56,6 +56,11 @@ jobs:
56
run: |
57
uv run python scripts/generate.py --spec-url https://api.rencom.ai
58
59
+ - name: Format generated code
60
+ if: steps.diff.outputs.changed == 'true'
61
+ run: |
62
+ uv run ruff format .
63
+
64
- name: Run tests
65
if: steps.diff.outputs.changed == 'true'
66
@@ -67,7 +72,7 @@ jobs:
67
72
with:
68
73
token: ${{ secrets.PAT_TOKEN }}
69
74
commit-message: "chore: sync with API changes"
70
- title: "🤖 API Sync: Update generated code"
75
+ title: "API Sync: Update generated code"
71
76
body: |
77
Auto-generated PR from API changes detected in OpenAPI spec.
78
0 commit comments