We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaf5c47 commit f08ab01Copy full SHA for f08ab01
.github/workflows/warden.yml
@@ -0,0 +1,24 @@
1
+name: Warden
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
7
+# contents: write required for resolving review threads via GraphQL
8
+# See: https://github.com/orgs/community/discussions/44650
9
+permissions:
10
+ contents: write
11
+ pull-requests: write
12
+ checks: write
13
14
+jobs:
15
+ review:
16
+ runs-on: ubuntu-latest
17
+ env:
18
+ WARDEN_MODEL: ${{ secrets.WARDEN_MODEL }}
19
+ WARDEN_SENTRY_DSN: ${{ secrets.WARDEN_SENTRY_DSN }}
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - uses: getsentry/warden@v0
23
+ with:
24
+ anthropic-api-key: ${{ secrets.WARDEN_ANTHROPIC_API_KEY }}
0 commit comments