From ff4fd98f7574af705b3e9341d62917b64928e970 Mon Sep 17 00:00:00 2001 From: Daniel Garnier-Moiroux Date: Fri, 28 Aug 2026 17:35:09 +0200 Subject: [PATCH] ci: add workflow_dispatch trigger to CI workflow Lets contributors manually run CI against a branch on their own fork before opening a PR, without needing to open a draft PR or push an empty commit just to get a CI run. Fixes #1116 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c79351a6..f055b61a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,7 @@ name: CI on: pull_request: {} + workflow_dispatch: {} jobs: build: