Meta/cook: show author date in localtime

This commit is contained in:
Junio C Hamano
2025-06-05 16:05:01 -07:00
parent 41ebd16981
commit af94769838

4
cook
View File

@@ -205,7 +205,7 @@ sub get_commit {
my $fh;
open($fh, '-|',
qw(git for-each-ref),
"--format=%(refname:short) %(committerdate:iso8601)",
"--format=%(refname:short) %(authordate:format-local:%Y-%m-%d)",
"refs/heads/??/*")
or die "$!: open for-each-ref";
my @topic;
@@ -840,7 +840,7 @@ sub wildo_queue {
for ($in_section) {
return if (/^Graduated to/ || /^Discarded$/);
}
my $action = $topic->[6] || "Under discussion.";
my $action = $topic->[6] || "Unclassified.";
if (!exists $what->{$action}) {
$what->{$action} = [];
}