From 444f8c45c7e8be42e973fc6cfd0cbb7681eb3e7e Mon Sep 17 00:00:00 2001 From: TheTank20 Date: Mon, 14 Aug 2023 15:07:24 -0400 Subject: [PATCH] Allow manual workflows and auto workflows on all branches This lets workflows work on all branches without changing anything, and allows workflows to be activated manually. --- .github/workflows/windows.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 27a3d67..2167042 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -22,9 +22,10 @@ name: C/C++ CI (Windows) on: push: - branches: [ "master" ] + branches: [ "*" ] pull_request: - branches: [ "master" ] + branches: [ "*" ] + workflow_dispatch: jobs: build-32bit: