diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2023-05-30 20:01:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 20:01:58 (GMT) |
commit | 4c770617c0feae18ce3b05e0c8acd0910acc7082 (patch) | |
tree | 5f5adfdddf1537767ea400ca98d69a99dc3d856f /.github | |
parent | 4571eedca2f70768ddc4a2fd4fba2ae11b4c8037 (diff) | |
download | cpython-4c770617c0feae18ce3b05e0c8acd0910acc7082.zip cpython-4c770617c0feae18ce3b05e0c8acd0910acc7082.tar.gz cpython-4c770617c0feae18ce3b05e0c8acd0910acc7082.tar.bz2 |
CI: Temporarily skip paths with spaces to avoid error (#105110)
* CI: Temporarily skip paths with spaces to avoid "Error: One of your files includes a space"
* Dummy NEWS file to test the action. Will be deleted before merge.
* Revert "Dummy NEWS file to test the action. Will be deleted before merge."
This reverts commit 05cd028fd4c56e3173b134b10dc947c3af471d82.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d97c0a..8a42cda 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: >- |