feat(api): add pull request ID parameter to applications endpoint

This commit is contained in:
Karan Vijayakumar
2025-03-28 01:27:14 +09:00
parent 2947a9ff1d
commit 045b6341c0
2 changed files with 14 additions and 0 deletions

View File

@@ -4477,6 +4477,14 @@
"schema": {
"type": "boolean"
}
},
{
"name": "pr",
"in": "query",
"description": "Pull request ID",
"schema": {
"type": "integer"
}
}
],
"responses": {

View File

@@ -3152,6 +3152,12 @@ paths:
description: 'Force rebuild (without cache)'
schema:
type: boolean
-
name: pr
in: query
description: 'Pull request id'
schema:
type: integer
responses:
'200':
description: "Get deployment(s) UUID's"