From 8f41aeef702d57853c79507ff8cb1477d0ff9c0e Mon Sep 17 00:00:00 2001 From: sis0k0 Date: Sat, 5 Sep 2026 13:15:19 +0300 Subject: [PATCH] Add workflow_dispatch trigger to CI Allows manually triggering a run to test the CI workflow (e.g. the new scheduled job) without waiting for the weekly cron. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eabc49a..72e4024 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,7 @@ on: push: branches: ["main"] pull_request: + workflow_dispatch: schedule: - cron: '0 6 * * 1'