mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
fix(infra) - Create an empty file to test trigger workflow for e2e (#11022)
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com>
This commit is contained in:
15
.github/workflows/test_chained_e2e.yml
vendored
Normal file
15
.github/workflows/test_chained_e2e.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
name: 'Test Chained E2E'
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ['Trigger E2E']
|
||||
types: ['completed']
|
||||
|
||||
jobs:
|
||||
chained_e2e:
|
||||
name: 'Chained e2e'
|
||||
runs-on: 'gemini-cli-ubuntu-16-core'
|
||||
steps:
|
||||
- id: 'chained-e2e'
|
||||
run: |
|
||||
echo "Chained e2e workflow"
|
||||
19
.github/workflows/trigger_e2e.yml
vendored
Normal file
19
.github/workflows/trigger_e2e.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
name: 'Trigger E2E'
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
branch_ref:
|
||||
description: 'Branch to run on'
|
||||
required: true
|
||||
default: 'main'
|
||||
type: 'string'
|
||||
|
||||
jobs:
|
||||
trigger_e2e:
|
||||
name: 'Trigger e2e'
|
||||
runs-on: 'gemini-cli-ubuntu-16-core'
|
||||
steps:
|
||||
- id: 'trigger-e2e'
|
||||
run: |
|
||||
echo "Trigger e2e workflow"
|
||||
Reference in New Issue
Block a user