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.
1 parent 3024d0f commit 742720aCopy full SHA for 742720a
.github/workflows/pr-chat.yml
@@ -0,0 +1,25 @@
1
+name: PR Chat
2
+on:
3
+ pull_request_target:
4
+ types: [opened, ready_for_review, closed]
5
+
6
+jobs:
7
+ main:
8
+ runs-on: ubuntu-latest
9
+ if: ${{ !github.event.pull_request.draft }}
10
+ steps:
11
+ - name: Checkout Actions
12
+ uses: actions/checkout@v2
13
+ with:
14
+ repository: 'microsoft/vscode-github-triage-actions'
15
+ ref: stable
16
+ path: ./actions
17
+ - name: Install Actions
18
+ run: npm install --production --prefix ./actions
19
+ - name: Run Code Review Chat
20
+ uses: ./actions/code-review-chat
21
22
+ token: ${{secrets.GITHUB_TOKEN}}
23
+ slack_token: ${{ secrets.SLACK_TOKEN }}
24
+ slack_bot_name: 'VSCodeBot'
25
+ notification_channel: codereview
0 commit comments