We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a69c7d1 commit 14e1207Copy full SHA for 14e1207
1 file changed
.github/workflows/pr.yml
@@ -55,6 +55,17 @@ jobs:
55
- run: pnpm install --frozen-lockfile
56
- run: pnpm bazel test -- //...
57
58
+ pr_review:
59
+ needs: [lint, test]
60
+ if: always() && github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened')
61
+ runs-on: ubuntu-latest
62
+ steps:
63
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
64
+ - uses: ./github-actions/review-bot
65
+ with:
66
+ angular-review-bot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
67
+ google-generative-ai-key: ${{ secrets.GOOGLE_GENERATIVE_AI_KEY }}
68
+
69
# macos testing is disabled as we do not have any targets we currently test.
70
#test-macos:
71
# timeout-minutes: 30
0 commit comments