mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-27 09:28:43 +07:00
Fix author variable in auto commenter action (#3609)
This commit is contained in:
committed by
GitHub
parent
1ffc542640
commit
2cfc863fc7
4
.github/workflows/auto-handle-on-label.yml
vendored
4
.github/workflows/auto-handle-on-label.yml
vendored
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user