From 03a0984326208d4c8bb64df5ee7e11b9d5897124 Mon Sep 17 00:00:00 2001 From: Tommy Keswick Date: Wed, 2 Sep 2026 15:49:02 -0700 Subject: [PATCH] Say "Dry Run" in the workflow_dispatch checkbox label GitHub renders only the input description as the checkbox label, so the previous wording -- "Report what would happen without uploading or invalidating" -- never showed the term a developer would scan for. The run-name already said "(dry run)", so the run title and the control that sets it disagreed. --- .github/workflows/publish-to-s3.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-to-s3.yml b/.github/workflows/publish-to-s3.yml index 56f48a8..918436e 100644 --- a/.github/workflows/publish-to-s3.yml +++ b/.github/workflows/publish-to-s3.yml @@ -27,7 +27,7 @@ on: workflow_dispatch: inputs: dry_run: - description: "Report what would happen without uploading or invalidating" + description: "Dry Run: Report what would be uploaded and invalidated, and change nothing." type: boolean default: true