A GitHub Action that automatically links to referenced Sentry issues in issues and PRs
name: Auto link Sentry issues
on:
issues:
types:
- opened
- edited
pull_request:
branches: [main]
types:
- opened
- edited
jobs:
linkify_sentry:
runs-on: ubuntu-latest
steps:
- uses: formsort/sentryfuge@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
org_slug: formsort
project_prefixes: |
FLOW-FE
FLOW-BE
STUDIO-FE
STUDIO-BE
Optionally use sentry_base
if you have a self-hosted Sentry instance.