From 2e89b30a400a81db89a9071d182bc36d2a274a74 Mon Sep 17 00:00:00 2001 From: laughingman7743 Date: Mon, 6 Jul 2026 12:25:06 +0900 Subject: [PATCH] Allow dispatching the test workflow manually The README status badge reflects the latest run of the workflow on the default branch, which is only the weekly scheduled run; a transient failure there (e.g., an Athena concurrent-query quota stampede) pins the badge red for up to a week. workflow_dispatch allows re-running the suite on master on demand to refresh it. Co-Authored-By: Claude Fable 5 --- .github/workflows/test.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ae751c32..d8e6a3ee 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,6 +7,10 @@ on: - '**.md' schedule: - cron: '0 0 * * 0' + # Allows refreshing the README status badge on demand: the badge reflects + # the latest run on the default branch, which is otherwise only the weekly + # scheduled run and stays red for up to a week after a transient failure. + workflow_dispatch: permissions: id-token: write