Skip to content

Commit 7f1bd60

Browse files
committed
improve error message
1 parent 8fc6f0e commit 7f1bd60

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/ci-testing-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2889,7 +2889,7 @@ jobs:
28892889
uv venv .venv && source .venv/bin/activate
28902890
make openapi-specs
28912891
changed_files=$(git diff --name-only | awk '{$1=$1};1')
2892-
echo "files which changed: ${changed_files}"
2892+
echo "Changes (run 'make openapi-specs' to update): \n${changed_files}"
28932893
[ -z "${changed_files}" ] && exit 1
28942894
28952895

services/api-server/openapi.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77
},
88
"paths": {
99
"/v0/meta": {
10+
"get": {
11+
"tags": [
12+
"meta"
13+
],
14+
"summary": "Get Service Metadata",
15+
"operationId": "get_service_metadata",
16+
"responses": {
1017
"200": {
1118
"description": "Successful Response",
1219
"content": {

0 commit comments

Comments
 (0)