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 5589207 commit 3c9546dCopy full SHA for 3c9546d
.github/workflows/monitor-metrics.yaml
@@ -60,7 +60,13 @@ jobs:
60
}
61
const url = `${context.serverUrl}//${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`
62
const urlLink = `[Open](${url})`
63
- const issueTitle = `Benchmark Performance Degradation`
+ const date = new Date();
64
+ const year = date.getFullYear();
65
+ const month = ('0' + (date.getMonth() + 1)).slice(-2);
66
+ const day = ('0' + date.getDate()).slice(-2);
67
+ const today = `${year}-${month}-${day}`
68
+
69
+ const issueTitle = `Benchmark Performance Degradation (${today})`
70
const issueBody = `
71
📝 Benchmark detail: ${urlLink}
72
0 commit comments