From 32bb493abf6da4bad1c5f0e2d0e68dd57e75ffcc Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Tue, 30 Jul 2024 15:49:26 -0700 Subject: [PATCH] Actions: allow manual triggering, and don't ignore "*/*" --- .github/workflows/compile.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index e58d4c40..0d882eab 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -1,11 +1,13 @@ name: Compile & test -# Run whenever we push to any branch without a "/", other than [coverity-scan]. +# Run whenever we push to any branch other than [coverity-scan], or if we +# manually trigger a workflow. on: push: branches: - - '*' + - '**' - '!coverity-scan' + workflow_dispatch: env: # Shared variables amongst all projects / platforms / compilers.