Switch to pullfrog.com
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
|
||||
<h1 align="center">
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://pullfrog.ai/frog-white-200px.png">
|
||||
<img src="https://pullfrog.ai/frog-green-200px.png" width="25px" align="center" alt="Pullfrog logo" />
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://pullfrog.com/frog-white-200px.png">
|
||||
<img src="https://pullfrog.com/frog-green-200px.png" width="25px" align="center" alt="Pullfrog logo" />
|
||||
</picture><br />
|
||||
Pullfrog
|
||||
</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.
|
||||
|
||||
<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>
|
||||
|
||||
<br />
|
||||
|
||||
+1
-1
@@ -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
|
||||
@@ -138,7 +138,7 @@ async function throwMissingApiKeyError({
|
||||
agent: (typeof agents)[AgentNameType] | null;
|
||||
repoContext: RepoContext;
|
||||
}): 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 inputKeys = agent?.apiKeyNames || getAllPossibleKeyNames();
|
||||
|
||||
+2
-2
@@ -13,7 +13,7 @@ function buildCommentFooter(payload: Payload): string {
|
||||
const agentName = payload.agent;
|
||||
const agentInfo = agentName ? agentsManifest[agentName] : null;
|
||||
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
|
||||
const workflowRunPart = runId
|
||||
@@ -22,7 +22,7 @@ function buildCommentFooter(payload: Payload): string {
|
||||
|
||||
return `
|
||||
${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> | 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> | Triggered by [Pullfrog](https://pullfrog.com) | Using [${agentDisplayName}](${agentUrl}) | ${workflowRunPart} | [𝕏](https://x.com/pullfrogai)</sup>`;
|
||||
}
|
||||
|
||||
function stripExistingFooter(body: string): string {
|
||||
|
||||
@@ -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.:
|
||||
|
||||
\`\`\`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
@@ -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;
|
||||
|
||||
+1
-1
@@ -53,7 +53,7 @@ async function acquireTokenViaOIDC(): Promise<string> {
|
||||
const oidcToken = await core.getIDToken("pullfrog-api");
|
||||
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...");
|
||||
|
||||
|
||||
+5
-5
@@ -21,8 +21,8 @@ export function setupTestRepo(options: SetupOptions): void {
|
||||
log.info("🗑️ Removing existing .temp directory...");
|
||||
rmSync(tempDir, { recursive: true, force: true });
|
||||
|
||||
log.info("📦 Cloning pullfrogai/scratch into .temp...");
|
||||
$("git", ["clone", "git@github.com:pullfrogai/scratch.git", tempDir]);
|
||||
log.info("📦 Cloning pullfrog/scratch into .temp...");
|
||||
$("git", ["clone", "git@github.com:pullfrog/scratch.git", tempDir]);
|
||||
} else {
|
||||
log.info("📦 Resetting existing .temp repository...");
|
||||
execSync("git reset --hard HEAD && git clean -fd", {
|
||||
@@ -31,8 +31,8 @@ export function setupTestRepo(options: SetupOptions): void {
|
||||
});
|
||||
}
|
||||
} else {
|
||||
log.info("📦 Cloning pullfrogai/scratch into .temp...");
|
||||
$("git", ["clone", "git@github.com:pullfrogai/scratch.git", tempDir]);
|
||||
log.info("📦 Cloning pullfrog/scratch into .temp...");
|
||||
$("git", ["clone", "git@github.com:pullfrog/scratch.git", tempDir]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,7 +45,7 @@ export function setupGitConfig(): void {
|
||||
log.info("🔧 Setting up git configuration...");
|
||||
try {
|
||||
// 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,
|
||||
stdio: "pipe",
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user