mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-11 06:31:01 -07:00
18 lines
354 B
YAML
18 lines
354 B
YAML
name: 'Trigger Docs Rebuild'
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- 'docs/**'
|
|
jobs:
|
|
trigger-rebuild:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- name: 'Trigger rebuild'
|
|
run: |
|
|
curl -X POST \
|
|
-H "Content-Type: application/json" \
|
|
-d '{}' \
|
|
"${{ secrets.DOCS_REBUILD_URL }}"
|