From 647080e9ee25f5e9cf4fa3a889fccf8550789576 Mon Sep 17 00:00:00 2001 From: Varsha GS Date: Tue, 12 Aug 2025 13:00:55 +0530 Subject: [PATCH] fix: stop notifying draft PRs Signed-off-by: Varsha GS --- .github/workflows/opened-pr-notification-on-slack.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/opened-pr-notification-on-slack.yml b/.github/workflows/opened-pr-notification-on-slack.yml index c4723e2d..11b392db 100644 --- a/.github/workflows/opened-pr-notification-on-slack.yml +++ b/.github/workflows/opened-pr-notification-on-slack.yml @@ -6,12 +6,13 @@ permissions: on: pull_request: - types: [opened, reopened] + types: [opened, reopened, ready_for_review] jobs: notify-slack: runs-on: ubuntu-latest - + + if: ${{ !github.event.pull_request.draft }} steps: - name: Checkout code uses: actions/checkout@v4