From 79363eb8fdcea940af0c69afcbe5462b9a087ec0 Mon Sep 17 00:00:00 2001 From: PB Date: Tue, 2 Mar 2021 20:30:46 +0100 Subject: [PATCH] Add more ignored paths for GitHub CI GitHub CI does not build for Microsoft Windows. Therefore, do not start builds for changes made in folders used only for MSW. --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 485034dd56..e6be3ef5dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,12 @@ on: - 'distrib/**' - 'docs/**' - 'interface/**' + - 'include/msvc/**' + - 'include/wx/msw/**' + - 'src/wx/msw/**' - '*.md' - '*.yml' + - 'wxwidgets.props' pull_request: branches: - master