From: Hugo van Kemenade Date: Tue, 30 May 2023 18:20:19 +0000 (+0300) Subject: CI: Temporarily skip paths with spaces to avoid "Error: One of your files includes... X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef110f9b5c625fa8493ed58ef9791b219f222a97;p=thirdparty%2FPython%2Fcpython.git CI: Temporarily skip paths with spaces to avoid "Error: One of your files includes a space" --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d97c0a60928..8a42cdad7f35 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -87,7 +87,20 @@ jobs: with: filter: | Doc/** - Misc/** + # Temporarily skip paths with spaces + # (i.e. "C API", "Core and Builtins") + # to avoid "Error: One of your files includes a space". + # Pending https://github.com/python/core-workflow/issues/186 + # Misc/** + Misc/NEWS.d/next/Build/** + Misc/NEWS.d/next/Documentation/** + Misc/NEWS.d/next/IDLE/** + Misc/NEWS.d/next/Library/** + Misc/NEWS.d/next/Security/** + Misc/NEWS.d/next/Tests/** + Misc/NEWS.d/next/Tools-Demos/** + Misc/NEWS.d/next/Windows/** + Misc/NEWS.d/next/macOS/** .github/workflows/reusable-docs.yml - name: Check for docs changes if: >-