From 4f468a9f195e03db75cba6df790d1e8079ae231e Mon Sep 17 00:00:00 2001 From: matt korwel Date: Thu, 18 Sep 2025 10:14:12 -0700 Subject: [PATCH] no loops (#8716) --- .github/workflows/release-patch-from-comment.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-patch-from-comment.yml b/.github/workflows/release-patch-from-comment.yml index 01e0f01276..243a76ea70 100644 --- a/.github/workflows/release-patch-from-comment.yml +++ b/.github/workflows/release-patch-from-comment.yml @@ -7,6 +7,8 @@ on: jobs: slash-command: runs-on: 'ubuntu-latest' + # Only run if the comment is from a human user (not a bot) + if: "!endsWith(github.event.comment.user.login, '[bot]')" permissions: contents: 'write' pull-requests: 'write'