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 e665835 commit 470bcf1Copy full SHA for 470bcf1
lib/prepare_release.js
@@ -25,7 +25,7 @@ export default class ReleasePreparation extends Session {
25
this.isLTS = false;
26
this.isLTSTransition = argv.startLTS;
27
this.runBranchDiff = !argv.skipBranchDiff;
28
- this.defaultReleaseDate = argv.releaseDate ?? new Date().toISOString().split('T')[0];
+ this.defaultReleaseDate = argv.releaseDate ?? new Date().toISOString().slice(0, 10);
29
this.ltsCodename = '';
30
this.date = '';
31
this.filterLabels = argv.filterLabel && argv.filterLabel.split(',');
0 commit comments