Преглед на файлове

Merge pull request #1714 from ehuss/fix-docs-update-wrong-repo

Fix docs update using the wrong repo for the commit message
Mark Rousskov преди 1 година
родител
ревизия
566bdcd178
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/handlers/docs_update.rs

+ 1 - 1
src/handlers/docs_update.rs

@@ -67,7 +67,7 @@ pub async fn docs_update() -> Result<Option<Issue>> {
     let dest_repo = gh.repository(DEST_REPO).await?;
     let work_repo = gh.repository(WORK_REPO).await?;
 
-    let updates = get_submodule_updates(&gh, &work_repo).await?;
+    let updates = get_submodule_updates(&gh, &dest_repo).await?;
     if updates.is_empty() {
         tracing::trace!("no updates this week?");
         return Ok(None);