Skip to content

Commit 566bdcd

Browse files
Merge pull request #1714 from ehuss/fix-docs-update-wrong-repo
Fix docs update using the wrong repo for the commit message
2 parents a50b73a + d92b5d6 commit 566bdcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers/docs_update.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub async fn docs_update() -> Result<Option<Issue>> {
6767
let dest_repo = gh.repository(DEST_REPO).await?;
6868
let work_repo = gh.repository(WORK_REPO).await?;
6969

70-
let updates = get_submodule_updates(&gh, &work_repo).await?;
70+
let updates = get_submodule_updates(&gh, &dest_repo).await?;
7171
if updates.is_empty() {
7272
tracing::trace!("no updates this week?");
7373
return Ok(None);

0 commit comments

Comments
 (0)