Skip to content

Commit

Permalink
ci(bot): fixed bad bash expression
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Sep 5, 2024
1 parent 75a05ab commit b8a5822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/bot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ runs:
--non-interactive \
"$GPTME_COMMAND" "Here is the context from the issue or pull request:" issue.md comments.md \
"-" "Write the response to 'response.md', it will be posted as a comment." \
|| echo "TIMEOUT" && exit 1
|| (echo "TIMEOUT" && exit 1)
# comment with the response
if [[ -f response.md ]]; then
Expand Down

0 comments on commit b8a5822

Please sign in to comment.