Fix author variable in auto commenter action (#3609)

This commit is contained in:
Justin Ellingwood
2025-09-03 10:37:32 +01:00
committed by GitHub
parent 1ffc542640
commit 2cfc863fc7

View File

@@ -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")