Add dsn to output schema

Signed-off-by: Brent Swisher <brent@brentswisher.com>
This commit is contained in:
Brent Swisher
2025-10-08 11:11:00 -04:00
parent 0016e09b28
commit ed9729d2ee
@@ -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;