diff --git a/.github/workflows/labeled.yml b/.github/workflows/labeled.yml index a5a55b2e9f..3529f724b4 100644 --- a/.github/workflows/labeled.yml +++ b/.github/workflows/labeled.yml @@ -90,7 +90,7 @@ jobs: id: generate-comment-text env: GITHUB_ISSUE_BODY: ${{ github.event.issue.body }} - SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_EVENTS_SECRET }} shell: bash run: | bun scripts/associate-issue-with-sentry.ts diff --git a/scripts/associate-issue-with-sentry.ts b/scripts/associate-issue-with-sentry.ts index 50844cc29f..49ffe57ca8 100644 --- a/scripts/associate-issue-with-sentry.ts +++ b/scripts/associate-issue-with-sentry.ts @@ -47,3 +47,5 @@ console.log(`Sentry permalink: ${permalink}`); await Bun.write("sentry-id.txt", shortId); await Bun.write("sentry-link.txt", permalink); + +export {};