File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ var authorName = process.env.PULL_REQUEST_AUTHOR_NAME;
1010var authorIconUrl = process . env . PULL_REQUEST_AUTHOR_ICON_URL ;
1111var compareBranchName = process . env . PULL_REQUEST_COMPARE_BRANCH_NAME ;
1212var baseBranchName = process . env . PULL_REQUEST_BASE_BRANCH_NAME ;
13- var sendHereMention = process . env . IS_SEND_HERE_MENTION ? "<!here>\n" : "" ;
13+ var sendHereMention = process . env . IS_SEND_HERE_MENTION . toLowerCase ( ) === "true" ? "<!here>\n" : "" ;
1414var message = {
1515 blocks : [
1616 {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const authorIconUrl: string = process.env.PULL_REQUEST_AUTHOR_ICON_URL;
1111const compareBranchName : string = process . env . PULL_REQUEST_COMPARE_BRANCH_NAME ;
1212const baseBranchName : string = process . env . PULL_REQUEST_BASE_BRANCH_NAME ;
1313
14- const sendHereMention : string = process . env . IS_SEND_HERE_MENTION ? "<!here>\n" : "" ;
14+ const sendHereMention : string = process . env . IS_SEND_HERE_MENTION . toLowerCase ( ) === "true" ? "<!here>\n" : "" ;
1515
1616const message : Object = {
1717 blocks : [
You can’t perform that action at this time.
0 commit comments