From cde14813bd3069d6affccd92cdb909a071d2ebae Mon Sep 17 00:00:00 2001 From: Martin Raszyk Date: Thu, 22 May 2025 08:27:25 +0200 Subject: [PATCH] fix: do not trigger slack notification upon adding reviewers --- .github/workflows/ci-notify-slack.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-notify-slack.yml b/.github/workflows/ci-notify-slack.yml index 35d6f680..8a33cb1d 100644 --- a/.github/workflows/ci-notify-slack.yml +++ b/.github/workflows/ci-notify-slack.yml @@ -2,11 +2,12 @@ name: PR Slack Notification on: pull_request: - types: [review_requested] + types: [opened, ready_for_review] jobs: notify-slack: name: Notify Slack + if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - name: Checkout