0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-07-22 07:52:04 +02:00

update swagger docu

This commit is contained in:
Christopher Homberger 2025-03-21 15:52:41 +01:00
parent 8cfb047983
commit 8fd54f285a
2 changed files with 24 additions and 25 deletions

View File

@ -912,14 +912,19 @@ func GetWorkflowRuns(ctx *context.APIContext) {
// description: name of the repository
// type: string
// required: true
// - name: run
// in: path
// description: runid of the workflow run
// type: integer
// required: true
// - name: name
// - name: event
// in: query
// description: name of the artifact
// description: workflow event name
// type: string
// required: false
// - name: branch
// in: query
// description: workflow branch
// type: string
// required: false
// - name: status
// in: query
// description: workflow status (pending, queued, in_progress, failure, success, skipped)
// type: string
// required: false
// responses:
@ -1042,11 +1047,6 @@ func GetWorkflowJobs(ctx *context.APIContext) {
// description: runid of the workflow run
// type: integer
// required: true
// - name: name
// in: query
// description: name of the artifact
// type: string
// required: false
// responses:
// "200":
// "$ref": "#/responses/ArtifactsList"

View File

@ -4292,16 +4292,21 @@
"required": true
},
{
"type": "integer",
"description": "runid of the workflow run",
"name": "run",
"in": "path",
"required": true
"type": "string",
"description": "workflow event name",
"name": "event",
"in": "query"
},
{
"type": "string",
"description": "name of the artifact",
"name": "name",
"description": "workflow branch",
"name": "branch",
"in": "query"
},
{
"type": "string",
"description": "workflow status (pending, queued, in_progress, failure, success, skipped)",
"name": "status",
"in": "query"
}
],
@ -4447,12 +4452,6 @@
"name": "run",
"in": "path",
"required": true
},
{
"type": "string",
"description": "name of the artifact",
"name": "name",
"in": "query"
}
],
"responses": {