ADK Stale Issue Auditor #12
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: ADK Stale Issue Auditor | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # This runs at 6:00 AM UTC (10 PM PST) | |
| - cron: '0 6 * * *' | |
| jobs: | |
| audit-stale-issues: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| permissions: | |
| issues: write | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install requests google-adk | |
| - name: Run Auditor Agent Script | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ADK_TRIAGE_AGENT }} | |
| GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }} | |
| OWNER: ${{ github.repository_owner }} | |
| REPO: adk-python | |
| CONCURRENCY_LIMIT: 3 | |
| LLM_MODEL_NAME: "gemini-2.5-flash" | |
| PYTHONPATH: contributing/samples | |
| run: python -m adk_stale_agent.main |