Rebuild.
Testing / prettier (push) Failing after 2m12s
Testing / unit-test (20.x) (push) Failing after 3m38s
Testing / e2e-test (20.x) (push) Failing after 5m21s

This commit is contained in:
2026-01-04 13:50:51 -05:00
parent 22bedf8d07
commit c73fd82a87
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -90203,7 +90203,7 @@ var repo = context2.repo.repo;
async function getCommitDiff(commitSha) {
if (PLATFORM === "gitea" || PLATFORM === "forgejo") {
try {
const diffResponse2 = await giteaClient.repoDownloadCommitDiffOrPatch({
const diffResponse2 = await giteaClient.repository.repoDownloadCommitDiffOrPatch({
owner,
repo,
sha: commitSha,
+1 -1
View File
@@ -41,7 +41,7 @@ type Diff = string;
async function getCommitDiff(commitSha: string): Promise<{ sha: SHA; diff: Diff }> {
if (PLATFORM === 'gitea' || PLATFORM === 'forgejo') {
try {
const diffResponse = await giteaClient.repoDownloadCommitDiffOrPatch({
const diffResponse = await giteaClient.repository.repoDownloadCommitDiffOrPatch({
owner,
repo,
sha: commitSha,