release: bump action to 0.1.13

This commit is contained in:
Colin McDonnell
2026-05-23 16:36:41 +00:00
committed by pullfrog[bot]
parent ed8ee363c0
commit a0746dcc27
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -197,6 +197,12 @@ const TRANSIENT_PATTERNS: RegExp[] = [
/returned error: 5\d\d/i, /returned error: 5\d\d/i,
/HTTP 429/, /HTTP 429/,
/returned error: 429/i, /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 { export function classifyPushError(msg: string): PushErrorKind {
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "pullfrog", "name": "pullfrog",
"version": "0.1.12", "version": "0.1.13",
"type": "module", "type": "module",
"bin": { "bin": {
"pullfrog": "dist/cli.mjs", "pullfrog": "dist/cli.mjs",