Skip to content

Commit

Permalink
test: check if codeql reports errors still
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi committed Aug 23, 2024
1 parent 6c35c1b commit 3cf73b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/github/lib/commits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function* getCommits(
fromRef: string,
toRef = "HEAD",
) {
const cacheKey = `${org}/${repo}@${fromRef}..${toRef}`;
const cacheKey = `${org}/${repo}@${fromRef}...${toRef}`;
const cached = await cache.get(cacheKey);
const { since, commits } = cached || {
since: await getCommitDate(org, repo, fromRef),
Expand Down

0 comments on commit 3cf73b1

Please sign in to comment.