DEBUG THIS WIP #2455
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Automation: Tag issue with package label' | |
| on: | |
| push | |
| jobs: | |
| add_labels: | |
| name: Add package label | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Map package to issue label | |
| # https://github.com/kanga333/variable-mapper | |
| uses: kanga333/[email protected] | |
| id: packageLabel | |
| with: | |
| key: '@sentry/node - fastify' | |
| # Note: Since this is handled as a regex, and JSON parse wrangles slashes /, we just use `.` instead | |
| map: | | |
| { | |
| "@sentry.angular": { | |
| "label": "Angular" | |
| }, | |
| "@sentry.astro": { | |
| "label": "Astro" | |
| }, | |
| "@sentry.aws-serverless": { | |
| "label": "AWS Lambda" | |
| }, | |
| "@sentry.browser": { | |
| "label": "Browser" | |
| }, | |
| "@sentry.bun": { | |
| "label": "Bun" | |
| }, | |
| "@sentry.cloudflare.-.hono": { | |
| "label": "Hono" | |
| }, | |
| "@sentry.cloudflare": { | |
| "label": "Cloudflare Workers" | |
| }, | |
| "@sentry.deno": { | |
| "label": "Deno" | |
| }, | |
| "@sentry.ember": { | |
| "label": "Ember" | |
| }, | |
| "@sentry.gatsby": { | |
| "label": "Gatbsy" | |
| }, | |
| "@sentry.google-cloud-serverless": { | |
| "label": "Google Cloud Functions" | |
| }, | |
| "@sentry.nestjs": { | |
| "label": "Nest.js" | |
| }, | |
| "@sentry.nextjs": { | |
| "label": "Next.js" | |
| }, | |
| "@sentry.node.-.express": { | |
| "label": "Express" | |
| }, | |
| "@sentry.node.-.fastify": { | |
| "label": "Fastify" | |
| }, | |
| "@sentry.node.-.koa": { | |
| "label": "Koa" | |
| }, | |
| "@sentry.node.-.hapi": { | |
| "label": "Hapi | |
| }, | |
| "@sentry.node.-.connect": { | |
| "label": "Connect | |
| }, | |
| "@sentry.node": { | |
| "label": "Node.js" | |
| }, | |
| "@sentry.nuxt": { | |
| "label": "Nuxt" | |
| }, | |
| "@sentry.react-router": { | |
| "label": "React Router Framework " | |
| }, | |
| "@sentry.react": { | |
| "label": "React" | |
| }, | |
| "@sentry.remix": { | |
| "label": "Remix" | |
| }, | |
| "@sentry.solid": { | |
| "label": "Solid" | |
| }, | |
| "@sentry.solidstart": { | |
| "label": "SolidStart" | |
| }, | |
| "@sentry.sveltekit": { | |
| "label": "SvelteKit" | |
| }, | |
| "@sentry.svelte": { | |
| "label": "Svelte" | |
| }, | |
| "@sentry.vue": { | |
| "label": "Vue" | |
| }, | |
| "@sentry.tanstackstart-react": { | |
| "label": "Tanstack Start React" | |
| }, | |
| "@sentry.wasm": { | |
| "label": "WASM" | |
| }, | |
| "Sentry.Browser.Loader": { | |
| "label": "Browser" | |
| }, | |
| "Sentry.Browser.CDN.bundle": { | |
| "label": "Browser" | |
| } | |
| } | |
| export_to: output | |