Some checks failed
Test Custom Executables / test-custom-executables (push) Has been cancelled
CI / test (push) Has been cancelled
CI / prettier (push) Has been cancelled
CI / typecheck (push) Has been cancelled
Sync Base Action to claude-code-base-action / Sync base-action to claude-code-base-action repository (push) Has been cancelled
Test Claude Code Action / test-inline-prompt (push) Has been cancelled
Test Claude Code Action / test-prompt-file (push) Has been cancelled
Test Claude Env Feature / test-claude-env-with-comments (push) Has been cancelled
Test MCP Servers / test-mcp-integration (push) Has been cancelled
Test MCP Servers / test-mcp-config-flag (push) Has been cancelled
Test Settings Feature / test-settings-inline-allow (push) Has been cancelled
Test Settings Feature / test-settings-inline-deny (push) Has been cancelled
Test Settings Feature / test-settings-file-allow (push) Has been cancelled
Test Settings Feature / test-settings-file-deny (push) Has been cancelled
Fork of markwylde/claude-code-gitea-action@b744372 (v1.0.21) with the 'View job' link fixed to use GITHUB_RUN_NUMBER (per-repo index) instead of GITHUB_RUN_ID (global id), because Forgejo routes run pages by per-repo index. See VENDOR.txt.
53 lines
1 KiB
TypeScript
53 lines
1 KiB
TypeScript
import type { GitHubClient } from "../api/client";
|
|
|
|
type IssueComment = {
|
|
type: "issue_comment";
|
|
id: string;
|
|
body: string;
|
|
};
|
|
|
|
type ReviewComment = {
|
|
type: "review_comment";
|
|
id: string;
|
|
body: string;
|
|
};
|
|
|
|
type ReviewBody = {
|
|
type: "review_body";
|
|
id: string;
|
|
pullNumber: string;
|
|
body: string;
|
|
};
|
|
|
|
type IssueBody = {
|
|
type: "issue_body";
|
|
issueNumber: string;
|
|
body: string;
|
|
};
|
|
|
|
type PullRequestBody = {
|
|
type: "pr_body";
|
|
pullNumber: string;
|
|
body: string;
|
|
};
|
|
|
|
export type CommentWithImages =
|
|
| IssueComment
|
|
| ReviewComment
|
|
| ReviewBody
|
|
| IssueBody
|
|
| PullRequestBody;
|
|
|
|
export async function downloadCommentImages(
|
|
_client: GitHubClient,
|
|
_owner: string,
|
|
_repo: string,
|
|
_comments: CommentWithImages[],
|
|
): Promise<Map<string, string>> {
|
|
// Temporarily simplified - return empty map to avoid Octokit dependencies
|
|
// TODO: Implement image downloading with direct Gitea API calls if needed
|
|
console.log(
|
|
"Image downloading temporarily disabled during Octokit migration",
|
|
);
|
|
return new Map<string, string>();
|
|
}
|