From 09f06727343bb10a6b89eefb1ff3e93f826caf2e Mon Sep 17 00:00:00 2001 From: matt korwel Date: Thu, 18 Sep 2025 22:28:26 -0700 Subject: [PATCH] support label on pushes too (#8831) --- .github/workflows/e2e.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index ca437dae7f..aced6e9ad0 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -56,7 +56,8 @@ jobs: github.event_name == 'push' || github.event_name == 'merge_group' || (github.event.pull_request.head.repo.full_name == github.repository) || - (github.event.label.name == 'maintainer:e2e:ok') + (github.event.label.name == 'maintainer:e2e:ok') || + (contains(github.event.pull_request.labels.*.name, 'maintainer:e2e:ok')) runs-on: 'gemini-cli-ubuntu-16-core' strategy: fail-fast: false @@ -119,7 +120,8 @@ jobs: github.event_name == 'push' || github.event_name == 'merge_group' || (github.event.pull_request.head.repo.full_name == github.repository) || - (github.event.label.name == 'maintainer:e2e:ok') + (github.event.label.name == 'maintainer:e2e:ok') || + (contains(github.event.pull_request.labels.*.name, 'maintainer:e2e:ok')) runs-on: '${{ matrix.os }}' continue-on-error: true strategy: @@ -177,7 +179,8 @@ jobs: github.event_name == 'push' || github.event_name == 'merge_group' || (github.event.pull_request.head.repo.full_name == github.repository) || - (github.event.label.name == 'maintainer:e2e:ok') + (github.event.label.name == 'maintainer:e2e:ok') || + (contains(github.event.pull_request.labels.*.name, 'maintainer:e2e:ok')) runs-on: 'gemini-cli-windows-16-core' continue-on-error: true