From 2cfc863fc799443b9035fd5f086f84eaee367e1b Mon Sep 17 00:00:00 2001 From: Justin Ellingwood Date: Wed, 3 Sep 2025 10:37:32 +0100 Subject: [PATCH] Fix author variable in auto commenter action (#3609) --- .github/workflows/auto-handle-on-label.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-handle-on-label.yml b/.github/workflows/auto-handle-on-label.yml index a2d6173c3..285ae963c 100644 --- a/.github/workflows/auto-handle-on-label.yml +++ b/.github/workflows/auto-handle-on-label.yml @@ -38,7 +38,7 @@ jobs: echo "should_close=true" >> $GITHUB_OUTPUT ;; "old-course") - echo "comment=Hi @AUTHOR! Thanks for your contribution, but we are no longer updating the course. We expect to fully replace it in the coming months. Please review n8n's [contributing](${{ env.CONTRIBUTING_LINK }}) guidelines." >> $GITHUB_OUTPUT + echo "comment=Hi @$AUTHOR! Thanks for your contribution, but we are no longer updating the course. We expect to fully replace it in the coming months. Please review n8n's [contributing](${{ env.CONTRIBUTING_LINK }}) guidelines." >> $GITHUB_OUTPUT echo "should_close=true" >> $GITHUB_OUTPUT ;; "dev-cancelled") @@ -46,7 +46,7 @@ jobs: echo "should_close=true" >> $GITHUB_OUTPUT ;; "pending-dev") - echo "comment=Thanks @AUTHOR! We'll hold off on reviewing this until the PR is ready to go in the main repo." >> $GITHUB_OUTPUT + echo "comment=Thanks @$AUTHOR! We'll hold off on reviewing this until the PR is ready to go in the main repo." >> $GITHUB_OUTPUT echo "should_close=false" >> $GITHUB_OUTPUT ;; "in-next-release")