Rebuild.
Testing / prettier (push) Failing after 4m2s
Testing / unit-test (20.x) (push) Failing after 5m34s
Testing / e2e-test (20.x) (push) Failing after 6m49s

This commit is contained in:
2026-01-04 13:59:51 -05:00
parent c73fd82a87
commit 78a235b82b
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -90185,8 +90185,8 @@ var octokit;
var giteaClient;
if (PLATFORM === "gitea" || PLATFORM === "forgejo") {
try {
const GiteaClient = (init_dist_bundle7(), __toCommonJS(dist_bundle_exports)).Gitea;
giteaClient = new GiteaClient({
const gitea = (init_dist_bundle7(), __toCommonJS(dist_bundle_exports)).ApiClient;
giteaClient = new gitea({
baseUrl: GITEA_URL,
auth: GITHUB_TOKEN
});
+2 -2
View File
@@ -18,8 +18,8 @@ let giteaClient: any; // We'll initialize this properly below
if (PLATFORM === 'gitea' || PLATFORM === 'forgejo') {
// Dynamically import the Gitea client
try {
const GiteaClient = require('@go-gitea/sdk.js').Gitea;
giteaClient = new GiteaClient({
const gitea = require('@go-gitea/sdk.js').ApiClient;
giteaClient = new gitea({
baseUrl: GITEA_URL,
auth: GITHUB_TOKEN,
});