From c39da9c9d623de0d2d29c5bb96ca0c518256a53c Mon Sep 17 00:00:00 2001 From: Adrien GIVRY Date: Sun, 1 Feb 2026 11:26:13 -0500 Subject: [PATCH] Fixed PR workflow trigger --- .github/workflows/linux.yml | 3 +-- .github/workflows/windows.yml | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index fedf2e39..6495813f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -3,7 +3,6 @@ name: Linux on: workflow_dispatch: pull_request: - types: [ready_for_review, synchronize] push: branches: - main @@ -17,7 +16,7 @@ jobs: name: Clang ${{ matrix.configuration }} x64 runs-on: ubuntu-latest if: github.event.pull_request.draft == false - + strategy: matrix: configuration: [Debug, Release] diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 08dd7d02..2bff5585 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -3,7 +3,6 @@ name: Windows on: workflow_dispatch: pull_request: - types: [ready_for_review, synchronize] push: branches: - main @@ -17,14 +16,14 @@ jobs: name: MSVC ${{ matrix.configuration }} x64 runs-on: windows-latest if: github.event.pull_request.draft == false - + strategy: matrix: configuration: [Debug, Release] steps: - uses: actions/checkout@v5 - + - name: Add MSBuild to PATH uses: microsoft/setup-msbuild@v2