From a0746dcc27f05680a125ab78766a927759c2dc52 Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Sat, 23 May 2026 16:36:41 +0000 Subject: [PATCH] release: bump action to 0.1.13 --- mcp/git.ts | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/mcp/git.ts b/mcp/git.ts index 9ea85c1..344e630 100644 --- a/mcp/git.ts +++ b/mcp/git.ts @@ -197,6 +197,12 @@ const TRANSIENT_PATTERNS: RegExp[] = [ /returned error: 5\d\d/i, /HTTP 429/, /returned error: 429/i, + // github installation tokens can 401 for seconds after minting while + // replicating (@octokit/auth-app retries the same class). git push + // surfaces it as "Invalid username or token", distinct from 403 + // permission denied — safe to backoff-retry with the same token. + /Invalid username or token/, + /Authentication failed for 'https:\/\/github\.com\//, ]; export function classifyPushError(msg: string): PushErrorKind { diff --git a/package.json b/package.json index 07367b9..70a4372 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pullfrog", - "version": "0.1.12", + "version": "0.1.13", "type": "module", "bin": { "pullfrog": "dist/cli.mjs",