This is an automated email from the ASF dual-hosted git repository. yhu pushed a commit to branch buildwheelskip in repository https://gitbox.apache.org/repos/asf/beam.git
commit 5afb2e883fdd64d6a204165e8851250cda1b7ab6 Author: Yi Hu <[email protected]> AuthorDate: Wed Mar 11 18:28:19 2026 -0400 Skip certain wheels on pull request trigger --- .github/workflows/build_wheels.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 7bbbb1a2e3d..554839b9816 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -229,6 +229,7 @@ jobs: ] # Keep in sync (remove asterisks) with PY_VERSIONS_FULL env var above - if changed, change that as well. py_version: ["cp310-", "cp311-", "cp312-", "cp313-"] + if: ${{ !(github.event_name == 'pull_request' && !contains(matrix.os_python.runner, 'self-hosted') && !(matrix.py_version == 'cp310-' || matrix.py_version == 'cp313-')) }} steps: - name: Download python source distribution from artifacts uses: actions/download-artifact@v5
