remove merge queue skipper (#8819)

This commit is contained in:
matt korwel
2025-09-18 22:07:47 -07:00
committed by GitHub
parent 3f16ed5a9a
commit c434a7e682
2 changed files with 9 additions and 43 deletions
+8 -15
View File
@@ -68,15 +68,12 @@ jobs:
e2e_linux:
name: 'E2E Test (Linux) - ${{ matrix.sandbox }}'
needs:
- 'merge_queue_skipper'
- 'build'
if: |
needs.merge_queue_skipper.outputs.skip != 'true' && (
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_name == 'push' ||
github.event_name == 'merge_group' ||
(github.event.pull_request.head.repo.full_name == github.repository) ||
(github.event.label.name == 'maintainer:e2e:ok')
runs-on: 'gemini-cli-ubuntu-16-core'
strategy:
fail-fast: false
@@ -134,15 +131,12 @@ jobs:
e2e_slow_platforms:
name: 'Slow E2E - Mac'
needs:
- 'merge_queue_skipper'
- 'build'
if: |
needs.merge_queue_skipper.outputs.skip != 'true' && (
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_name == 'push' ||
github.event_name == 'merge_group' ||
(github.event.pull_request.head.repo.full_name == github.repository) ||
(github.event.label.name == 'maintainer:e2e:ok')
runs-on: '${{ matrix.os }}'
continue-on-error: true
strategy:
@@ -260,7 +254,6 @@ jobs:
name: 'E2E'
if: 'always()'
needs:
- 'merge_queue_skipper'
- 'e2e_linux'
runs-on: 'gemini-cli-ubuntu-16-core'
steps: