From 4d816f1e47fe76c2b1c2615e5a716ff73350afae Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 24 Jan 2026 21:56:25 +0000 Subject: [PATCH] chore(workflow): add inputs for manual trigger reason and skip tests in nightly build --- .github/workflows/nightly-build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index c9f1bb20..9766d585 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -7,6 +7,15 @@ on: # Daily at 09:00 UTC (4am EST / 5am EDT) - cron: '0 9 * * *' workflow_dispatch: + inputs: + reason: + description: "Why are you running this manually?" + required: true + default: "manual trigger" + skip_tests: + description: "Skip test-nightly-image job?" + required: false + default: "false" env: REGISTRY: ghcr.io