Skip to content

Commit

Permalink
Add notification workflow to notify about PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Amdrel committed Jun 14, 2024
1 parent f011ab4 commit a5a3c1c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pull-request-opened-notify-slack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Send a Slack notification when PRs are opened to alert that a review is needed
on:
pull_request:
types:
- opened
jobs:
send-slack-notification:
if: github.event.pull_request.merged == false
uses: thisdot/shared-actions/.github/workflows/pull-request-opened-notify-slack.yml@main
secrets:
OSS_SLACK_NOTIFICATION_WEBHOOK_URL: ${{ secrets.OSS_SLACK_NOTIFICATION_WEBHOOK_URL }}

0 comments on commit a5a3c1c

Please sign in to comment.