Skip to content

Commit 56fe0ca

Browse files
authored
Merge pull request #105 from microsoft/lramos15/prChat
Add PR Chat
2 parents cfa25cb + 969090f commit 56fe0ca

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/pr-chat.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
steps:
10+
- name: Checkout Actions
11+
uses: actions/checkout@v2
12+
with:
13+
repository: "microsoft/vscode-github-triage-actions"
14+
ref: stable
15+
path: ./actions
16+
- name: Install Actions
17+
run: npm install --production --prefix ./actions
18+
- name: Run Code Review Chat
19+
uses: ./actions/code-review-chat
20+
with:
21+
token: ${{secrets.GITHUB_TOKEN}}
22+
slack_token: ${{ secrets.SLACK_TOKEN }}
23+
slack_bot_name: "VSCodeBot"
24+
notification_channel: codereview

0 commit comments

Comments
 (0)