Skip to content

Commit 3e7c80a

Browse files
committed
Notify through Slack when a review is requested or approved
1 parent df48f26 commit 3e7c80a

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: PR approved Slack notification
2+
on:
3+
pull_request_review:
4+
types: [submitted]
5+
jobs:
6+
approved:
7+
uses: NomicFoundation/github-actions-workflows/.github/workflows/review-approved-slack-notification.yml@main
8+
secrets: inherit
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: PR review requested Slack notification
2+
on:
3+
pull_request_target:
4+
types: [review_requested]
5+
jobs:
6+
requested:
7+
uses: NomicFoundation/github-actions-workflows/.github/workflows/review-requested-slack-notification.yml@main
8+
secrets: inherit

0 commit comments

Comments
 (0)