Analyze New Release for ADK Docs Updates #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Analyze New Release for ADK Docs Updates | |
on: | |
# Runs on every new release. | |
release: | |
types: [published] | |
# Manual trigger for testing and retrying. | |
workflow_dispatch: | |
jobs: | |
analyze-new-release-for-adk-docs-updates: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests google-adk | |
- name: Run Analyzing Script | |
env: | |
GITHUB_TOKEN: ${{ secrets.ADK_TRIAGE_AGENT }} | |
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }} | |
GOOGLE_GENAI_USE_VERTEXAI: 0 | |
DOC_OWNER: 'google' | |
CODE_OWNER: 'google' | |
DOC_REPO: 'adk-docs' | |
CODE_REPO: 'adk-python' | |
INTERACTIVE: 0 | |
PYTHONPATH: contributing/samples/adk_documentation | |
run: python -m adk_release_analyzer.main |