From 795abccc19a0802f2a720461c9b3cb3f748b1a32 Mon Sep 17 00:00:00 2001 From: HugoCasa Date: Fri, 20 Feb 2026 09:29:37 +0100 Subject: [PATCH] ignore cf and ellipsis for discord --- .github/workflows/discord-notification.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/discord-notification.yml b/.github/workflows/discord-notification.yml index dfe92a75c8..5eb48570e7 100644 --- a/.github/workflows/discord-notification.yml +++ b/.github/workflows/discord-notification.yml @@ -44,6 +44,8 @@ jobs: if: > github.event_name == 'issue_comment' && github.event.issue.pull_request + && github.event.comment.user.login != 'cloudflare-workers-and-pages[bot]' + && github.event.comment.user.login != 'ellipsis-dev[bot]' uses: ./.github/workflows/shareable-discord-notification.yml with: PR_STATUS: "comment" @@ -57,7 +59,10 @@ jobs: DISCORD_BOT_TOKEN: ${{ secrets.DISCORD_AI_BOT_TOKEN }} notify_discord_on_review_comment: - if: github.event_name == 'pull_request_review_comment' + if: > + github.event_name == 'pull_request_review_comment' + && github.event.comment.user.login != 'cloudflare-workers-and-pages[bot]' + && github.event.comment.user.login != 'ellipsis-dev[bot]' uses: ./.github/workflows/shareable-discord-notification.yml with: PR_STATUS: "comment"