ci: allow manual runs via workflow_dispatch

Lets CI be triggered on demand from the Actions tab or `gh workflow run`,
instead of pushing a commit just to exercise the pipeline.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Michal Tuszowski
2026-07-18 13:51:26 +02:00
parent f70a541b55
commit b8093d707d
+3
View File
@@ -5,6 +5,9 @@ on:
branches: ["main"]
pull_request:
branches: ["main"]
# Manual trigger: run CI on demand from the Actions tab (or `gh workflow run
# ci.yml --ref <branch>`) without pushing a commit just to see it go green.
workflow_dispatch:
permissions:
contents: read