From ed9729d2ee165404ac309c9628640d7ab42c0c63 Mon Sep 17 00:00:00 2001 From: Brent Swisher Date: Wed, 8 Oct 2025 11:11:00 -0400 Subject: [PATCH] Add dsn to output schema Signed-off-by: Brent Swisher --- .../src/actions/fetchDSN.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/scaffolder-backend-module-sentry/src/actions/fetchDSN.ts b/plugins/scaffolder-backend-module-sentry/src/actions/fetchDSN.ts index d5078ce300..47fd4be39f 100644 --- a/plugins/scaffolder-backend-module-sentry/src/actions/fetchDSN.ts +++ b/plugins/scaffolder-backend-module-sentry/src/actions/fetchDSN.ts @@ -52,6 +52,14 @@ export function createSentryFetchDSNAction(options: { config: Config }) { }) .optional(), }, + output: { + dsn: z => + z + .string({ + description: 'The public DSN of the Sentry project', + }) + .optional(), + }, }, async handler(ctx) { const { organizationSlug, projectSlug, authToken } = ctx.input;