Skip to content

Commit

Permalink
Add workflows for Slack PR review notifications (NomicFoundation#1004)
Browse files Browse the repository at this point in the history
This PR adds the workflows that notifies about PR reviews via Slack
  • Loading branch information
alcuadrado authored Jun 10, 2024
1 parent ea31417 commit bd8c85c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/review-requested-slack-notification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: "PR review requested Slack notification"
on:
pull_request_target:
types:
- "review_requested"
jobs:
requested:
uses: "NomicFoundation/github-actions-workflows/.github/workflows/review-requested-slack-notification.yml@main"
secrets: "inherit"
9 changes: 9 additions & 0 deletions .github/workflows/review-submitted-slack-notification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: "PR reviewed Slack notification"
on:
pull_request_review:
types:
- "submitted"
jobs:
reviewed:
uses: "NomicFoundation/github-actions-workflows/.github/workflows/review-submitted-slack-notification.yml@main"
secrets: "inherit"

0 comments on commit bd8c85c

Please sign in to comment.