Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions packages/core/src/publisher/github-comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,8 @@ function buildCommentBody(options: CommentOptions): string {

const rerunSection = rerunUrl ? `\n\n[↺ Re-run demo](${rerunUrl})` : '';

const logoUrl =
'https://raw.githubusercontent.com/DeDuckProject/git-glimpse/main/assets/logo_square_small.png';

return `${COMMENT_MARKER}
## <img src="${logoUrl}" width="40" height="40" align="absmiddle" alt="git-glimpse logo" /> UI Demo Preview
## 🧐 UI Demo Preview

**Changes detected in**: ${changedFilesList}${moreFiles}

Expand All @@ -145,5 +142,7 @@ ${script}
</details>

---
*Generated by [git-glimpse](https://github.com/DeDuckProject/git-glimpse)${rerunSection}*`;
*Generated by [git-glimpse](https://github.com/DeDuckProject/git-glimpse)${rerunSection}*

<img src="https://raw.githubusercontent.com/DeDuckProject/git-glimpse/main/assets/logo_square_small.png" width="90" height="90" alt="git-glimpse logo" />`;
}
Loading