-
-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: fixed typo s/<detail>/<details>/g
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -165,10 +165,10 @@ jobs: | |
Triggered by: $COMMENT_URL | ||
Run: $RUN_URL | ||
<detail> | ||
<details> | ||
<summary>Log</summary> | ||
<pre>$(cat log.txt)</pre> | ||
</detail>" | ||
</details>" | ||
git config user.name "gptme-bot" | ||
git config user.email "[email protected]" | ||
|
@@ -210,9 +210,9 @@ jobs: | |
MESSAGE="I'm sorry, I could not fulfill your request. Please check the [log of this run]($RUN_URL) for more information." | ||
if [[ -f log.txt ]]; then | ||
MESSAGE+=" | ||
<detail> | ||
<details> | ||
<summary>Conversation log</summary> | ||
<pre>$(cat log.txt)</pre> | ||
</detail>" | ||
</details>" | ||
fi | ||
echo "$MESSAGE" | gh issue comment $ISSUE_NUMBER -R $USER_NAME/$REPO_NAME --body-file=- |