Skip to content

Commit

Permalink
fix: prefix missing when comparing
Browse files Browse the repository at this point in the history
  • Loading branch information
roblambell authored Nov 1, 2023
1 parent eba7d40 commit ed314ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async function main () {
const commitsRaw = await gh.rest.repos.compareCommitsWithBasehead({
owner,
repo,
basehead: `${latestTag.name}...${branch}`,
basehead: `${prefix}${latestTag.name}...${branch}`,
page: curPage,
per_page: 100
})
Expand Down

0 comments on commit ed314ec

Please sign in to comment.