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 c0916bd + 52b8d1d commit ec2d795Copy full SHA for ec2d795
.github/workflows/devdocs-review.yml
@@ -1,9 +1,11 @@
1
name: Notify DevDocs on Reviews
2
3
on:
4
+ issue_comment:
5
+ types: [created, edited]
6
pull_request_review_comment:
7
types: [created, edited]
- pull_request:
8
+ pull_request_target:
9
types: [opened, edited]
10
pull_request_review:
11
types: [submitted, edited]
@@ -22,7 +24,7 @@ jobs:
22
24
|| context.payload.review?.body
23
25
|| "";
26
- if (text.includes("@DevDocs") || text.includes("@10gen/devdocs")) {
27
+ if (text.includes("@DevDocs") || text.includes("@mongodb/devdocs")) {
28
await fetch(process.env.SLACK_WEBHOOK_URL, {
29
method: "POST",
30
headers: { "Content-Type": "application/json" },
0 commit comments