Selaa lähdekoodia

Add age to MCPs waiting to be seconded

Signed-off-by: apiraino <apiraino@users.noreply.github.com>
apiraino 3 vuotta sitten
vanhempi
commit
055170b8cb
5 muutettua tiedostoa jossa 18 lisäystä ja 4 poistoa
  1. 13 0
      src/actions.rs
  2. 1 0
      src/github.rs
  3. 1 1
      templates/_issue.tt
  4. 2 2
      templates/_issues.tt
  5. 1 1
      templates/prioritization_agenda.tt

+ 13 - 0
src/actions.rs

@@ -1,3 +1,4 @@
+use chrono::{DateTime, Utc};
 use std::collections::HashMap;
 
 use async_trait::async_trait;
@@ -35,6 +36,7 @@ pub struct IssueDecorator {
     pub repo_name: String,
     pub labels: String,
     pub assignees: String,
+    pub updated_at: String,
 }
 
 lazy_static! {
@@ -49,6 +51,16 @@ lazy_static! {
     };
 }
 
+fn to_human(d: DateTime<Utc>) -> String {
+    let d1 = chrono::Utc::now() - d;
+    let days = d1.num_days();
+    if days > 60 {
+        format!("{} months ago", days / 30)
+    } else {
+        format!("about {} days ago", days)
+    }
+}
+
 #[async_trait]
 impl<'a> Action for Step<'a> {
     async fn call(&self) -> String {
@@ -94,6 +106,7 @@ impl<'a> Action for Step<'a> {
                                                 .map(|u| u.login.as_ref())
                                                 .collect::<Vec<_>>()
                                                 .join(", "),
+                                            updated_at: to_human(issue.updated_at),
                                         })
                                         .collect();
 

+ 1 - 0
src/github.rs

@@ -244,6 +244,7 @@ pub struct Issue {
     pub number: u64,
     pub body: String,
     created_at: chrono::DateTime<Utc>,
+    pub updated_at: chrono::DateTime<Utc>,
     #[serde(default)]
     pub merge_commit_sha: Option<String>,
     pub title: String,

+ 1 - 1
templates/_issue.tt

@@ -1 +1 @@
-{% macro render(issue) %}"{{issue.title}}" [{{issue.repo_name}}#{{issue.number}}]({{issue.html_url}}){% endmacro %}
+{% macro render(issue, with_age="") %}"{{issue.title}}" [{{issue.repo_name}}#{{issue.number}}]({{issue.html_url}}) {% if with_age %}(last comment: {{issue.updated_at}}){% endif %}{% endmacro %}

+ 2 - 2
templates/_issues.tt

@@ -1,7 +1,7 @@
 {% import "_issue.tt" as issue %}
 
-{% macro render(issues, indent="", branch="", empty="No issues this time.") %}
+{% macro render(issues, indent="", branch="", with_age=false, empty="No issues this time.") %}
 {%- for issue in issues %}
-{{indent}}- {{ branch }} {{issue::render(issue=issue)}}{% else %}
+{{indent}}- {{ branch }} {{issue::render(issue=issue, with_age=with_age)}}{% else %}
 {{indent}}- {{empty}}{% endfor -%}
 {% endmacro %}

+ 1 - 1
templates/prioritization_agenda.tt

@@ -13,7 +13,7 @@ tags: weekly, rustc
 - New MCPs (take a look, see if you like them!)
 {{-issues::render(issues=mcp_new_not_seconded, indent="  ", empty="No new proposals this time.")}}
 - Old MCPs (not seconded, take a look)
-{{-issues::render(issues=mcp_old_not_seconded, indent="  ", empty="No old proposals this time.")}}
+{{-issues::render(issues=mcp_old_not_seconded, indent="  ", with_age=true, empty="No old proposals this time.")}}
 - Pending FCP requests (check your boxes!)
 {{-issues::render(issues=in_pre_fcp, indent="  ", empty="No pending FCP requests this time.")}}
 - Things in FCP (make sure you're good with it)