diff --git a/out/github-action.cjs b/out/github-action.cjs index 1842e29..3250523 100644 --- a/out/github-action.cjs +++ b/out/github-action.cjs @@ -90203,7 +90203,7 @@ var repo = context2.repo.repo; async function getCommitDiff(commitSha) { if (PLATFORM === "gitea" || PLATFORM === "forgejo") { try { - const diffResponse2 = await giteaClient.repository.repoDownloadCommitDiffOrPatch({ + const diffResponse2 = await giteaClient.repoDownloadCommitDiffOrPatch({ owner, repo, sha: commitSha, diff --git a/src/github-action.ts b/src/github-action.ts index f5dc05b..1f57924 100644 --- a/src/github-action.ts +++ b/src/github-action.ts @@ -41,13 +41,12 @@ type Diff = string; async function getCommitDiff(commitSha: string): Promise<{ sha: SHA; diff: Diff }> { if (PLATFORM === 'gitea' || PLATFORM === 'forgejo') { try { - const diffResponse = - await giteaClient.repository.repoDownloadCommitDiffOrPatch({ - owner, - repo, - sha: commitSha, - diffType: 'diff', - }); + const diffResponse = await giteaClient.repoDownloadCommitDiffOrPatch({ + owner, + repo, + sha: commitSha, + diffType: 'diff', + }); return { sha: commitSha, @@ -59,7 +58,7 @@ async function getCommitDiff(commitSha: string): Promise<{ sha: SHA; diff: Diff } } - // GitHub fallback remains correct + // GitHub path unchanged const diffResponse = await octokit.request( 'GET /repos/{owner}/{repo}/commits/{ref}', { @@ -75,6 +74,7 @@ async function getCommitDiff(commitSha: string): Promise<{ sha: SHA; diff: Diff return { sha: commitSha, diff: diffResponse.data }; } + interface DiffAndSHA { sha: SHA; diff: Diff;