@@ -143,8 +143,8 @@ jobs:
143143 OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
144144 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
145145
146- # Generate API clients with updated version
147- generate-api-clients :
146+ # Generate client APIs with updated version
147+ generate-client-apis :
148148 name : Generate API Clients
149149 needs : [version]
150150 runs-on : ubuntu-latest
@@ -185,25 +185,25 @@ jobs:
185185 cd backend && bun install
186186 cd ../ui && bun install
187187
188- - name : Generate API clients
188+ - name : Generate client APIs
189189 run : |
190190 bun run generate:ui:normalized
191191
192- - name : Commit generated API clients
192+ - name : Commit generated client APIs
193193 run : |
194194 # Check if there are changes to commit (files should already be staged by generate:ui:normalized)
195195 if git diff --staged --quiet; then
196196 echo "No API client changes to commit"
197197 else
198- git commit -m "🤖 Update API clients for v${{ needs.version.outputs.new_version }}"
198+ git commit -m "🤖 Update client APIs for v${{ needs.version.outputs.new_version }}"
199199 git push origin ${{ inputs.target_branch }}
200200 fi
201201
202202
203203 # Build and test
204204 build :
205205 name : Build and Test
206- needs : [version, generate-api-clients ]
206+ needs : [version, generate-client-apis ]
207207 uses : ./.github/workflows/build-and-test.yml
208208 with :
209209 run_tests : true
@@ -212,7 +212,7 @@ jobs:
212212 # Create GitHub release
213213 release :
214214 name : Create GitHub Release
215- needs : [version, changelog, generate-api-clients , build]
215+ needs : [version, changelog, generate-client-apis , build]
216216 uses : ./.github/workflows/create-release.yml
217217 with :
218218 release_type : ${{ inputs.release_type }}
@@ -260,7 +260,7 @@ jobs:
260260 # Discord notification on failure
261261 notify-failure :
262262 name : Discord Failure Notification
263- needs : [version, changelog, generate-api-clients , build, release]
263+ needs : [version, changelog, generate-client-apis , build, release]
264264 if : ${{ failure() }}
265265 runs-on : ubuntu-latest
266266
0 commit comments