From 2380dbd3213c3506e11cd78812923bd2063a61b4 Mon Sep 17 00:00:00 2001 From: Stephan Hageboeck Date: Wed, 22 Jul 2026 10:31:42 +0200 Subject: [PATCH] [CI] Trigger the python wheel workflow only when a PR is labelled. This is an attempt to reduce unnecessary triggers of the workflow. In most PRs, the wheels won't be built, so the PR "opened" trigger is a bit too much. Instead, trigger only when a PR is labelled, rebased, or reopened. --- .github/workflows/python_wheel_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python_wheel_build.yml b/.github/workflows/python_wheel_build.yml index a3e980f66cc5c..e46acad4176f1 100644 --- a/.github/workflows/python_wheel_build.yml +++ b/.github/workflows/python_wheel_build.yml @@ -11,7 +11,7 @@ on: schedule: - cron: '01 1 * * *' pull_request: - types: [opened, synchronize, reopened, labeled] + types: [synchronize, reopened, labeled] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}