APIs: Include enterprise spec check (#113470)

This commit is contained in:
Tom Ratcliffe
2025-11-06 08:31:24 +00:00
committed by GitHub
parent 7281bb7069
commit b739e4e802
2 changed files with 23 additions and 5 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ jobs:
make swagger-clean && make openapi3-gen
# Check if the generated specs differ from what's in the repository
for f in public/api-merged.json public/openapi3.json; do git add $f; done
for f in public/api-merged.json public/openapi3.json public/api-enterprise-spec.json; do git add $f; done
if [ -z "$(git diff --name-only --cached)" ]; then
echo "OpenAPI specs are up to date!"
else