You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "$body" == *"self-hosted (https://develop.sentry.dev/self-hosted/)"* && "$body" == *"integration"* && "$body" == *"sentry.io"* ]]; then
19
+
echo "match=true" >> $GITHUB_OUTPUT
20
+
else
21
+
echo "match=false" >> $GITHUB_OUTPUT
22
+
fi
23
+
- name: Comment on issue
24
+
if: steps.check.outputs.match == 'true'
25
+
uses: actions/github-script@v7
26
+
with:
27
+
script: |
28
+
github.rest.issues.createComment({
29
+
issue_number: context.issue.number,
30
+
owner: context.repo.owner,
31
+
repo: context.repo.repo,
32
+
body: "Hi! 👋 It looks like you're asking about an integration with self-hosted Sentry. Integrations work differently on self-hosted Sentry so we created separate docs here: https://develop.sentry.dev/integrations/. Please take a look and let us know if you need further help."
0 commit comments