From 045b6341c025941db1671f4732928d433082d872 Mon Sep 17 00:00:00 2001 From: Karan Vijayakumar Date: Fri, 28 Mar 2025 01:27:14 +0900 Subject: [PATCH] feat(api): add pull request ID parameter to applications endpoint --- openapi.json | 8 ++++++++ openapi.yaml | 6 ++++++ 2 files changed, 14 insertions(+) diff --git a/openapi.json b/openapi.json index 819f229cc..1d7d69fe7 100644 --- a/openapi.json +++ b/openapi.json @@ -4477,6 +4477,14 @@ "schema": { "type": "boolean" } + }, + { + "name": "pr", + "in": "query", + "description": "Pull request ID", + "schema": { + "type": "integer" + } } ], "responses": { diff --git a/openapi.yaml b/openapi.yaml index c965e9fe2..7cddb7b55 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -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"