From cb482fde4f7b68d0801da23320a7603f7ed59457 Mon Sep 17 00:00:00 2001 From: Daniel Stevens Date: Tue, 23 Jan 2024 09:14:24 -0700 Subject: [PATCH] Add `workflow_dispatch` trigger to build workflow This allows a run to be triggered on demand in the GitHub Actions web interface, without needing to push a change to a branch. This can be particularly useful when checking if changes to the build environment have broken the build, even though no code changes have been made in a long time. --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de86f2e3..5266c9ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,8 @@ name: Build -on: [push] +on: + push: + workflow_dispatch: jobs: windows: