Parcourir la source

Enable configuring major-change/major-change-accepted labels (#1620)

This will let the libs-api team use slightly different labels here.
Mark Rousskov il y a 2 ans
Parent
commit
c59b16a20f
2 fichiers modifiés avec 56 ajouts et 13 suppressions
  1. 26 0
      src/config.rs
  2. 30 13
      src/handlers/major_change.rs

+ 26 - 0
src/config.rs

@@ -150,13 +150,39 @@ pub(crate) struct NotifyZulipLabelConfig {
 
 #[derive(PartialEq, Eq, Debug, serde::Deserialize)]
 pub(crate) struct MajorChangeConfig {
+    /// A username (typically a group, e.g. T-lang) to ping on Zulip for newly
+    /// opened proposals.
     pub(crate) zulip_ping: String,
+    /// This label allows an issue to participate in the major change process
+    /// (i.e., creates a Zulip thread, tracks seconding, etc.)
+    // This has a default primarily for backwards compatibility.
+    #[serde(default = "MajorChangeConfig::enabling_label_default")]
+    pub(crate) enabling_label: String,
+    /// This is the label applied when issuing a `@rustbot second` command, it
+    /// indicates that the proposal has moved into the 10 day waiting period.
     pub(crate) second_label: String,
+    /// This is the label applied after the waiting period has successfully
+    /// elapsed (currently not automatically applied; this must be done
+    /// manually).
+    // This has a default primarily for backwards compatibility.
+    #[serde(default = "MajorChangeConfig::accept_label_default")]
+    pub(crate) accept_label: String,
+    /// This is the label to be added to newly opened proposals, so they can be
+    /// discussed in a meeting.
     pub(crate) meeting_label: String,
     pub(crate) zulip_stream: u64,
     pub(crate) open_extra_text: Option<String>,
 }
 
+impl MajorChangeConfig {
+    fn enabling_label_default() -> String {
+        String::from("major-change")
+    }
+    fn accept_label_default() -> String {
+        String::from("major-change-accepted")
+    }
+}
+
 #[derive(PartialEq, Eq, Debug, serde::Deserialize)]
 pub(crate) struct GlacierConfig {}
 

+ 30 - 13
src/handlers/major_change.rs

@@ -18,8 +18,15 @@ pub enum Invocation {
 pub(super) async fn parse_input(
     _ctx: &Context,
     event: &IssuesEvent,
-    _config: Option<&MajorChangeConfig>,
+    config: Option<&MajorChangeConfig>,
 ) -> Result<Option<Invocation>, String> {
+    let config = if let Some(config) = config {
+        config
+    } else {
+        return Ok(None);
+    };
+    let enabling_label = config.enabling_label.as_str();
+
     if event.action == IssuesAction::Edited {
         if let Some(changes) = &event.changes {
             if let Some(previous_title) = &changes.title {
@@ -32,13 +39,12 @@ pub(super) async fn parse_input(
                     .issue
                     .labels()
                     .iter()
-                    .any(|l| l.name == "major-change")
+                    .any(|l| l.name == enabling_label)
                 {
                     return Ok(Some(Invocation::Rename { prev_issue }));
                 } else {
-                    // Ignore renamed issues without major-change label
-                    // to avoid warning about the major-change feature not being
-                    // enabled.
+                    // Ignore renamed issues without primary label (e.g., major-change)
+                    // to avoid warning about the feature not being enabled.
                     return Ok(None);
                 }
             }
@@ -53,7 +59,7 @@ pub(super) async fn parse_input(
         && event
             .label
             .as_ref()
-            .map_or(false, |l| l.name == "major-change-accepted")
+            .map_or(false, |l| l.name == config.accept_label)
     {
         return Ok(Some(Invocation::AcceptedProposal));
     }
@@ -69,12 +75,12 @@ pub(super) async fn parse_input(
             .issue
             .labels()
             .iter()
-            .any(|l| l.name == "major-change"))
+            .any(|l| l.name == enabling_label))
         || (event.action == IssuesAction::Labeled
             && event
                 .label
                 .as_ref()
-                .map_or(false, |l| l.name == "major-change"))
+                .map_or(false, |l| l.name == enabling_label))
     {
         return Ok(Some(Invocation::NewProposal));
     }
@@ -93,11 +99,14 @@ pub(super) async fn handle_input(
         .issue
         .labels()
         .iter()
-        .any(|l| l.name == "major-change")
+        .any(|l| l.name == config.enabling_label)
     {
         let cmnt = ErrorComment::new(
             &event.issue,
-            "This is not a major change (it lacks the `major-change` label).",
+            format!(
+                "This issue is not ready for proposals; it lacks the `{}` label.",
+                config.enabling_label
+            ),
         );
         cmnt.post(&ctx.github).await?;
         return Ok(());
@@ -152,7 +161,8 @@ pub(super) async fn handle_input(
             let new_topic_url = crate::zulip::Recipient::Stream {
                 id: config.zulip_stream,
                 topic: &new_topic,
-            }.url();
+            }
+            .url();
             let breadcrumb_comment = format!(
                 "The associated GitHub issue has been renamed. Please see the [renamed Zulip topic]({}).",
                 new_topic_url
@@ -191,10 +201,17 @@ pub(super) async fn handle_command(
 ) -> anyhow::Result<()> {
     let issue = event.issue().unwrap();
 
-    if !issue.labels().iter().any(|l| l.name == "major-change") {
+    if !issue
+        .labels()
+        .iter()
+        .any(|l| l.name == config.enabling_label)
+    {
         let cmnt = ErrorComment::new(
             &issue,
-            "This is not a major change (it lacks the `major-change` label).",
+            &format!(
+                "This issue cannot be seconded; it lacks the `{}` label.",
+                config.enabling_label
+            ),
         );
         cmnt.post(&ctx.github).await?;
         return Ok(());