From 55e5434b2922f75ccfecd519afdd6faff9423ed4 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 10 Jul 2026 12:27:00 +0000 Subject: [PATCH] Format `pre-pull-docker-image/action.yml` with prettier The `pre-pull-docker-image` action landed (#101) with two `description` scalars wrapped in a style that `prettier --check` rejects, so the "Code formatting" check would flag the file on every run (its recent failures were masked by the checkout step failing first, before the style check could execute). Reformatted the file with the repo's prettier configuration; no behavioral change. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01UPXVU5ytyWJxSL4YChKhm6 --- pre-pull-docker-image/action.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pre-pull-docker-image/action.yml b/pre-pull-docker-image/action.yml index 6332b54..f4f988c 100644 --- a/pre-pull-docker-image/action.yml +++ b/pre-pull-docker-image/action.yml @@ -11,8 +11,7 @@ # adding it to a job can only help and never hurt. name: "Pre-pull Docker Image" -description: - "Pull the Docker image named by a Dockerfile's first `FROM` line +description: "Pull the Docker image named by a Dockerfile's first `FROM` line with retries, so that a later build in the same job finds it in the local image store." @@ -28,8 +27,7 @@ inputs: required: false default: "5" initial-delay-seconds: - description: - "Delay before the second attempt; doubles after every further + description: "Delay before the second attempt; doubles after every further failed attempt, capped at 60 seconds." required: false default: "5"