From 9451c1a2ef445200b2d82614386dd41a35e2daec Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 16 Feb 2026 13:29:17 -0500 Subject: [PATCH] ci: make it easier to test in forked branches + start branch names with `ci/` to easily test in a fork + add `workflow_dispatch` to allow manually triggering jobs on any branch Signed-off-by: Cole Robinson (cherry picked from commit v2v df23b503c22579468d7c544c1724507ede84948d) --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 13b3edca1..2ab665c37 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,9 +3,11 @@ on: push: branches: - master + - 'ci/**' # Allow automatic CI testing on ci/* branches pull_request: branches: - master + workflow_dispatch: # Allow manual triggering on any branch # Runs basic configure, make and make check. jobs: