File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1+ - Use emojis for all icons instead of dingbats, ensuring all clients render the icons in colour.
Original file line number Diff line number Diff line change @@ -1274,7 +1274,7 @@ export class GitHubRepoConnection
12741274 `onIssueEdited ${ this . roomId } ${ this . org } /${ this . repo } #${ event . issue . number } ` ,
12751275 ) ;
12761276 const orgRepoName = event . repository . full_name ;
1277- const icon = "✏" ;
1277+ const icon = "✏️ " ;
12781278 const content = emojify (
12791279 `${ icon } **${ event . sender . login } ** edited issue [${ orgRepoName } #${ event . issue . number } ](${ event . issue . html_url } ): "${ emojify ( event . issue . title ) } "` ,
12801280 ) ;
@@ -1563,7 +1563,7 @@ export class GitHubRepoConnection
15631563 }
15641564 }
15651565
1566- const icon = verb === "merged" ? "✳" : "⚫" ;
1566+ const icon = verb === "merged" ? "✳️ " : "⚫" ;
15671567 const content = emojify (
15681568 `${ icon } **${ event . sender . login } ** ${ verb } PR [${ orgRepoName } #${ event . pull_request . number } ](${ event . pull_request . html_url } ): "${ event . pull_request . title } "${ withComment } ` ,
15691569 ) ;
@@ -1684,7 +1684,7 @@ export class GitHubRepoConnection
16841684 `onWorkflowCompleted ${ this . roomId } ${ this . org } /${ this . repo } '${ workflowRun . id } '` ,
16851685 ) ;
16861686 const orgRepoName = event . repository . full_name ;
1687- const icon = "☑ " ;
1687+ const icon = "✅ " ;
16881688 const content = emojify (
16891689 `${ icon } Workflow **${ event . workflow . name } ** [${ WORKFLOW_CONCLUSION_TO_NOTICE [ workflowRun . conclusion ] } ](${ workflowRun . html_url } ) for ${ orgRepoName } on branch \`${ workflowRun . head_branch } \`` ,
16901690 ) ;
You can’t perform that action at this time.
0 commit comments