We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb0b93 commit cbc5524Copy full SHA for cbc5524
scripts/src/updateWorkflow.js
@@ -39,13 +39,12 @@ export async function updateWorkflowNumber() {
39
const workflowDetails = await getLatestWorkflow();
40
const count = workflowDetails.count;
41
const timeStamp = new Date(workflowDetails.timeStamp);
42
- const time = new Date(
43
- timeStamp.getTime() + 5.5 * 60 * 60 * 1000
44
- ).toLocaleString("en-US", {
+ const time =
+ new Date(workflowDetails.timeStamp).toLocaleString("en-US", {
45
timeZone: "Asia/Kolkata",
46
dateStyle: "medium",
47
timeStyle: "short",
48
- }) +" IST";
+ }) + " IST";
49
50
const readmeContent = readFileSync(READMEFILE_PATH, "utf-8");
51
0 commit comments