diff --git a/automation/releasetools/PrintMentionedIssuesAndPrs.kts b/automation/releasetools/PrintMentionedIssuesAndPrs.kts index 10129316c..b7d599c54 100644 --- a/automation/releasetools/PrintMentionedIssuesAndPrs.kts +++ b/automation/releasetools/PrintMentionedIssuesAndPrs.kts @@ -51,7 +51,7 @@ fun getHighestVersionedTag(): String { } fun getMostRecentCommonAncestorWithMaster(tag: String): String { - runCommand("git fetch --tags") + runCommand("git fetch $origin --tags") // TODO use origin master return runCommand("git merge-base master $tag").trim() }