We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a61e7ff commit 8ac607cCopy full SHA for 8ac607c
1 file changed
.github/workflows/notify_slack.yml
@@ -4,7 +4,7 @@ on:
4
issues:
5
types: [opened, reopened]
6
pull_request_target:
7
- types: [opened, reopened]
+ types: [opened, reopened, ready_for_review]
8
9
permissions: {}
10
@@ -26,7 +26,7 @@ jobs:
26
}
27
28
- name: Send pull request notification to Slack
29
- if: github.event_name == 'pull_request_target'
+ if: github.event_name == 'pull_request_target' && github.event.pull_request.draft == false
30
uses: slackapi/slack-github-action@03ea5433c137af7c0495bc0cad1af10403fc800c # v3.0.2
31
with:
32
webhook: ${{ secrets.SLACK_WEBHOOK_URL_PR }}
0 commit comments