Explorar o código

Handle reopened issues as opened issues for MCP

We want to close and reopen the existing proposals for the integration to run.
Mark Rousskov %!s(int64=5) %!d(string=hai) anos
pai
achega
7d301e6267
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      src/handlers/major_change.rs

+ 3 - 1
src/handlers/major_change.rs

@@ -34,7 +34,9 @@ impl Handler for MajorChangeHandler {
 
         match event {
             Event::Issue(e) => {
-                if e.action != github::IssuesAction::Opened {
+                if e.action != github::IssuesAction::Opened
+                    && e.action != github::IssuesAction::Reopened
+                {
                     return Ok(None);
                 }
             }