|
56 | 56 | github.event_name == 'push' || |
57 | 57 | github.event_name == 'merge_group' || |
58 | 58 | (github.event.pull_request.head.repo.full_name == github.repository) || |
59 | | - (github.event.label.name == 'maintainer:e2e:ok') |
| 59 | + (github.event.label.name == 'maintainer:e2e:ok') || |
| 60 | + (contains(github.event.pull_request.labels.*.name, 'maintainer:e2e:ok')) |
60 | 61 | runs-on: 'gemini-cli-ubuntu-16-core' |
61 | 62 | strategy: |
62 | 63 | fail-fast: false |
@@ -119,7 +120,8 @@ jobs: |
119 | 120 | github.event_name == 'push' || |
120 | 121 | github.event_name == 'merge_group' || |
121 | 122 | (github.event.pull_request.head.repo.full_name == github.repository) || |
122 | | - (github.event.label.name == 'maintainer:e2e:ok') |
| 123 | + (github.event.label.name == 'maintainer:e2e:ok') || |
| 124 | + (contains(github.event.pull_request.labels.*.name, 'maintainer:e2e:ok')) |
123 | 125 | runs-on: '${{ matrix.os }}' |
124 | 126 | continue-on-error: true |
125 | 127 | strategy: |
@@ -177,7 +179,8 @@ jobs: |
177 | 179 | github.event_name == 'push' || |
178 | 180 | github.event_name == 'merge_group' || |
179 | 181 | (github.event.pull_request.head.repo.full_name == github.repository) || |
180 | | - (github.event.label.name == 'maintainer:e2e:ok') |
| 182 | + (github.event.label.name == 'maintainer:e2e:ok') || |
| 183 | + (contains(github.event.pull_request.labels.*.name, 'maintainer:e2e:ok')) |
181 | 184 | runs-on: 'gemini-cli-windows-16-core' |
182 | 185 | continue-on-error: true |
183 | 186 |
|
|
0 commit comments