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
+3 -3
View File
@@ -2,8 +2,8 @@
<h1 align="center"> <h1 align="center">
<picture> <picture>
<source media="(prefers-color-scheme: dark)" srcset="https://pullfrog.ai/frog-white-200px.png"> <source media="(prefers-color-scheme: dark)" srcset="https://pullfrog.com/frog-white-200px.png">
<img src="https://pullfrog.ai/frog-green-200px.png" width="25px" align="center" alt="Pullfrog logo" /> <img src="https://pullfrog.com/frog-green-200px.png" width="25px" align="center" alt="Pullfrog logo" />
</picture><br /> </picture><br />
Pullfrog Pullfrog
</h1> </h1>
@@ -19,7 +19,7 @@
Pullfrog is a GitHub bot that brings the full power of your favorite coding agents into GitHub. It's open source and powered by GitHub Actions. Pullfrog is a GitHub bot that brings the full power of your favorite coding agents into GitHub. It's open source and powered by GitHub Actions.
<a href="https://github.com/apps/pullfrog/installations/new"> <a href="https://github.com/apps/pullfrog/installations/new">
<img src="https://pullfrog.ai/add-to-github.png" alt="Add to GitHub" width="150px" /> <img src="https://pullfrog.com/add-to-github.png" alt="Add to GitHub" width="150px" />
</a> </a>
<br /> <br />
+1 -1
View File
@@ -1,3 +1,3 @@
Add an empty commit to https://github.com/pullfrogai/pullfrog/pull/5 Add an empty commit to https://github.com/pullfrog/pullfrog/pull/5
And push it And push it
+1 -1
View File
@@ -138,7 +138,7 @@ async function throwMissingApiKeyError({
agent: (typeof agents)[AgentNameType] | null; agent: (typeof agents)[AgentNameType] | null;
repoContext: RepoContext; repoContext: RepoContext;
}): Promise<never> { }): Promise<never> {
const apiUrl = process.env.API_URL || "https://pullfrog.ai"; const apiUrl = process.env.API_URL || "https://pullfrog.com";
const settingsUrl = `${apiUrl}/console/${repoContext.owner}/${repoContext.name}`; const settingsUrl = `${apiUrl}/console/${repoContext.owner}/${repoContext.name}`;
const inputKeys = agent?.apiKeyNames || getAllPossibleKeyNames(); const inputKeys = agent?.apiKeyNames || getAllPossibleKeyNames();
+2 -2
View File
@@ -13,7 +13,7 @@ function buildCommentFooter(payload: Payload): string {
const agentName = payload.agent; const agentName = payload.agent;
const agentInfo = agentName ? agentsManifest[agentName] : null; const agentInfo = agentName ? agentsManifest[agentName] : null;
const agentDisplayName = agentInfo?.displayName || "Unknown agent"; const agentDisplayName = agentInfo?.displayName || "Unknown agent";
const agentUrl = agentInfo?.url || "https://pullfrog.ai"; const agentUrl = agentInfo?.url || "https://pullfrog.com";
// build workflow run link or show unavailable message // build workflow run link or show unavailable message
const workflowRunPart = runId const workflowRunPart = runId
@@ -22,7 +22,7 @@ function buildCommentFooter(payload: Payload): string {
return ` return `
${PULLFROG_DIVIDER} ${PULLFROG_DIVIDER}
<sup><a href="https://pullfrog.ai"><picture><source media="(prefers-color-scheme: dark)" srcset="https://pullfrog.ai/logos/frog-white-full-128px.png"><img src="https://pullfrog.ai/logos/frog-green-full-128px.png" width="9px" height="9px" style="vertical-align: middle; " alt="Pullfrog"></picture></a>&nbsp;&nbsp; Triggered by [Pullfrog](https://pullfrog.ai) Using [${agentDisplayName}](${agentUrl}) ${workflowRunPart} [𝕏](https://x.com/pullfrogai)</sup>`; <sup><a href="https://pullfrog.com"><picture><source media="(prefers-color-scheme: dark)" srcset="https://pullfrog.com/logos/frog-white-full-128px.png"><img src="https://pullfrog.com/logos/frog-green-full-128px.png" width="9px" height="9px" style="vertical-align: middle; " alt="Pullfrog"></picture></a>&nbsp;&nbsp; Triggered by [Pullfrog](https://pullfrog.com) Using [${agentDisplayName}](${agentUrl}) ${workflowRunPart} [𝕏](https://x.com/pullfrogai)</sup>`;
} }
function stripExistingFooter(body: string): string { function stripExistingFooter(body: string): string {
+1 -1
View File
@@ -39,7 +39,7 @@ export const modes: Mode[] = [
- If you created a branch without a PR, ALWAYS include a "Create PR" link and a link to the branch. e.g.: - If you created a branch without a PR, ALWAYS include a "Create PR" link and a link to the branch. e.g.:
\`\`\`md \`\`\`md
[\`pullfrog/branch-name\`](https://github.com/pullfrogai/scratch/tree/pullfrog/branch-name) • [Create PR ➔](https://github.com/pullfrogai/scratch/compare/main...pullfrog/branch-name?quick_pull=1&title=<informative_title>&body=<informative_body>) [\`pullfrog/branch-name\`](https://github.com/pullfrog/scratch/tree/pullfrog/branch-name) • [Create PR ➔](https://github.com/pullfrog/scratch/compare/main...pullfrog/branch-name?quick_pull=1&title=<informative_title>&body=<informative_body>)
\`\`\` \`\`\`
`, `,
}, },
+2 -2
View File
@@ -34,7 +34,7 @@ export interface WorkflowRunInfo {
* Returns the pre-created progress comment ID if one exists * Returns the pre-created progress comment ID if one exists
*/ */
export async function fetchWorkflowRunInfo(runId: string): Promise<WorkflowRunInfo> { 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) // add timeout to prevent hanging (5 seconds)
const timeoutMs = 5000; const timeoutMs = 5000;
@@ -88,7 +88,7 @@ export async function getRepoSettings(
token: string, token: string,
repoContext: RepoContext repoContext: RepoContext
): Promise<RepoSettings> { ): 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) // Add timeout to prevent hanging (5 seconds)
const timeoutMs = 5000; const timeoutMs = 5000;
+1 -1
View File
@@ -53,7 +53,7 @@ async function acquireTokenViaOIDC(): Promise<string> {
const oidcToken = await core.getIDToken("pullfrog-api"); const oidcToken = await core.getIDToken("pullfrog-api");
log.info("OIDC token generated successfully"); log.info("OIDC token generated successfully");
const apiUrl = process.env.API_URL || "https://pullfrog.ai"; const apiUrl = process.env.API_URL || "https://pullfrog.com";
log.info("Exchanging OIDC token for installation token..."); log.info("Exchanging OIDC token for installation token...");
+5 -5
View File
@@ -21,8 +21,8 @@ export function setupTestRepo(options: SetupOptions): void {
log.info("🗑️ Removing existing .temp directory..."); log.info("🗑️ Removing existing .temp directory...");
rmSync(tempDir, { recursive: true, force: true }); rmSync(tempDir, { recursive: true, force: true });
log.info("📦 Cloning pullfrogai/scratch into .temp..."); log.info("📦 Cloning pullfrog/scratch into .temp...");
$("git", ["clone", "git@github.com:pullfrogai/scratch.git", tempDir]); $("git", ["clone", "git@github.com:pullfrog/scratch.git", tempDir]);
} else { } else {
log.info("📦 Resetting existing .temp repository..."); log.info("📦 Resetting existing .temp repository...");
execSync("git reset --hard HEAD && git clean -fd", { execSync("git reset --hard HEAD && git clean -fd", {
@@ -31,8 +31,8 @@ export function setupTestRepo(options: SetupOptions): void {
}); });
} }
} else { } else {
log.info("📦 Cloning pullfrogai/scratch into .temp..."); log.info("📦 Cloning pullfrog/scratch into .temp...");
$("git", ["clone", "git@github.com:pullfrogai/scratch.git", tempDir]); $("git", ["clone", "git@github.com:pullfrog/scratch.git", tempDir]);
} }
} }
@@ -45,7 +45,7 @@ export function setupGitConfig(): void {
log.info("🔧 Setting up git configuration..."); log.info("🔧 Setting up git configuration...");
try { try {
// Use --local to scope config to this repo only, preventing leakage to user's global config // Use --local to scope config to this repo only, preventing leakage to user's global config
execSync('git config --local user.email "team@pullfrog.ai"', { execSync('git config --local user.email "team@pullfrog.com"', {
cwd: repoDir, cwd: repoDir,
stdio: "pipe", stdio: "pipe",
}); });