Files
gemini-cli/.github/workflows/orchestrator.yml
T
2025-10-21 20:07:37 -07:00

33 lines
705 B
YAML

# .github/workflows/pr-checks.yml
name: 'PR Checks'
on:
pull_request:
branches:
- 'main'
- 'release/**'
merge_group:
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build-and-publish:
name: 'Build and Publish CI Bundle'
uses: './.github/workflows/build-and-publish.yml'
ci:
name: 'CI Checks'
needs: 'build-and-publish'
uses: './.github/workflows/ci.yml'
with:
tag: '${{ needs.build-and-publish.outputs.tag }}'
e2e:
name: 'E2E Checks'
needs: 'build-and-publish'
uses: './.github/workflows/e2e.yml'
with:
tag: '${{ needs.build-and-publish.outputs.tag }}'