From 93b58361d9c9632acdda76eb8a1a582d1ff9701a Mon Sep 17 00:00:00 2001 From: Hendrik Liebau Date: Sun, 9 Feb 2025 23:55:50 +0100 Subject: [PATCH] Trigger Discord notification when draft PR is set to "ready for review" (#32344) Follow-up for #32332. The Discord webhook seems to ignore draft PRs, which is a good thing. But when a draft PR is then later set to "ready for review" we do want to send another notification that should not be filtered out. --- .github/workflows/runtime_discord_notify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/runtime_discord_notify.yml b/.github/workflows/runtime_discord_notify.yml index 5a138ce71b..e41b1c5640 100644 --- a/.github/workflows/runtime_discord_notify.yml +++ b/.github/workflows/runtime_discord_notify.yml @@ -2,7 +2,7 @@ name: (Runtime) Discord Notify on: pull_request_target: - types: [opened] + types: [opened, ready_for_review] paths-ignore: - compiler/** - .github/workflows/compiler_**.yml