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.
2 parents d3583a8 + 7b4e7e0 commit 06258aaCopy full SHA for 06258aa
src/triage.rs
@@ -56,7 +56,7 @@ pub async fn pulls(
56
let assignee = base_pull.assignee.map_or("".to_string(), |v| v.login);
57
let updated_at = base_pull
58
.updated_at
59
- .map_or("".to_string(), |v| v.to_rfc2822());
+ .map_or("".to_string(), |v| v.format("%Y-%m-%d").to_string());
60
61
let yellow_line = Utc::now() - Duration::days(YELLOW_DAYS);
62
let red_line = Utc::now() - Duration::days(RED_DAYS);
0 commit comments