From 6a8c648dbf20ff052d915af164b0433d10d858d3 Mon Sep 17 00:00:00 2001 From: rory Date: Wed, 18 Jan 2023 17:33:00 -0800 Subject: [PATCH 1/2] Don't tag deployers in NewDot deploy comments --- .../markPullRequestsAsDeployed/markPullRequestsAsDeployed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/javascript/markPullRequestsAsDeployed/markPullRequestsAsDeployed.js b/.github/actions/javascript/markPullRequestsAsDeployed/markPullRequestsAsDeployed.js index e0aeefa579ce..6d3dfaaeaf68 100644 --- a/.github/actions/javascript/markPullRequestsAsDeployed/markPullRequestsAsDeployed.js +++ b/.github/actions/javascript/markPullRequestsAsDeployed/markPullRequestsAsDeployed.js @@ -45,7 +45,7 @@ const workflowURL = `${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOS */ function getDeployMessage(deployer, deployVerb, prTitle) { let message = `šŸš€ [${deployVerb}](${workflowURL}) to ${isProd ? 'production' : 'staging'}`; - message += ` by @${deployer} in version: ${version} šŸš€`; + message += ` by https://github.com/${deployer} in version: ${version} šŸš€`; message += `\n\n platform | result \n ---|--- \nšŸ¤– android šŸ¤–|${androidResult} \nšŸ–„ desktop šŸ–„|${desktopResult}`; message += `\nšŸŽ iOS šŸŽ|${iOSResult} \nšŸ•ø web šŸ•ø|${webResult}`; From f14a2279293cd616fc7a8f29f6f69087bcc52713 Mon Sep 17 00:00:00 2001 From: rory Date: Wed, 18 Jan 2023 20:46:06 -0800 Subject: [PATCH 2/2] Rebuild GH actions --- .github/actions/javascript/markPullRequestsAsDeployed/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/javascript/markPullRequestsAsDeployed/index.js b/.github/actions/javascript/markPullRequestsAsDeployed/index.js index ed302cea44dc..a02018668f78 100644 --- a/.github/actions/javascript/markPullRequestsAsDeployed/index.js +++ b/.github/actions/javascript/markPullRequestsAsDeployed/index.js @@ -55,7 +55,7 @@ const workflowURL = `${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOS */ function getDeployMessage(deployer, deployVerb, prTitle) { let message = `šŸš€ [${deployVerb}](${workflowURL}) to ${isProd ? 'production' : 'staging'}`; - message += ` by @${deployer} in version: ${version} šŸš€`; + message += ` by https://github.com/${deployer} in version: ${version} šŸš€`; message += `\n\n platform | result \n ---|--- \nšŸ¤– android šŸ¤–|${androidResult} \nšŸ–„ desktop šŸ–„|${desktopResult}`; message += `\nšŸŽ iOS šŸŽ|${iOSResult} \nšŸ•ø web šŸ•ø|${webResult}`;