We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24cb46e + 6fdb090 commit 109b318Copy full SHA for 109b318
.github/workflows/ast-cli-team-review.yml
@@ -0,0 +1,22 @@
1
+name: AST-CLI-Team-Review
2
+on:
3
+ pull_request_target:
4
+ types: [ready_for_review, opened, reopened]
5
+
6
+permissions:
7
+ contents: none
8
+ issues: write
9
+ pull-requests: write
10
11
+jobs:
12
+ add-assignee-and-reviewers:
13
+ runs-on: ubuntu-latest
14
+ if: ${{ github.event.pull_request.user.type != 'Bot' }}
15
+ steps:
16
+ - name: Request reviewers
17
+ env:
18
+ GH_REPO: ${{ github.repository }}
19
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ PRNUM: ${{ github.event.pull_request.number }}
21
+ PRAUTHOR: ${{ github.event.pull_request.user.login }}
22
+ run: gh pr edit $PRNUM --add-reviewer Checkmarx/ast-sypher-team
0 commit comments