Switch to pullfrog.com

This commit is contained in:
Colin McDonnell
2025-12-04 16:40:10 -08:00
parent e5a83284df
commit 59f85a9003
8 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ export interface WorkflowRunInfo {
* Returns the pre-created progress comment ID if one exists
*/
export async function fetchWorkflowRunInfo(runId: string): Promise<WorkflowRunInfo> {
const apiUrl = process.env.API_URL || "https://pullfrog.ai";
const apiUrl = process.env.API_URL || "https://pullfrog.com";
// add timeout to prevent hanging (5 seconds)
const timeoutMs = 5000;
@@ -88,7 +88,7 @@ export async function getRepoSettings(
token: string,
repoContext: RepoContext
): Promise<RepoSettings> {
const apiUrl = process.env.API_URL || "https://pullfrog.ai";
const apiUrl = process.env.API_URL || "https://pullfrog.com";
// Add timeout to prevent hanging (5 seconds)
const timeoutMs = 5000;