From e0cfe806938afecd299d89c55df97d3b1adcea2d Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Fri, 5 Jul 2024 04:26:06 +0530 Subject: [PATCH] ci: Add UTC time to Cypress messages (#34727) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **/test rating** ![shot-2024-07-04-14-56-26](https://github.com/appsmithorg/appsmith/assets/120119/485c06c7-4adb-419d-b4da-3e999b87f3e8) > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: > Commit: 456128bd61a357ada1b3e2cd3937a0ff47d89c26 > Cypress dashboard. > Tags: `@tag.Rating` >
Thu, 04 Jul 2024 15:11:09 UTC ## Summary by CodeRabbit - **Chores** - Added the current date and time in UTC to the status messages generated by the Cypress script. --- .github/workflows/scripts/write-cypress-status.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/scripts/write-cypress-status.js b/.github/workflows/scripts/write-cypress-status.js index 28cbc50ff4..0bd387cf3c 100644 --- a/.github/workflows/scripts/write-cypress-status.js +++ b/.github/workflows/scripts/write-cypress-status.js @@ -40,6 +40,7 @@ module.exports = async function({core, context, github}, alertType, note) { HEADER, `> [!${alertType.toUpperCase()}]`, ((ALERT_PREFIXES[alertType] ?? "") + note.trim()).replaceAll(/^/gm, "> "), + ">
" + new Date().toUTCString().replace("GMT", "UTC"), FOOTER, ].join("\n");