mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
Merge https://github.com/google/adk-python/pull/3638 Thanks for this great project 👏 This PR updates the GitHub actions dependencies to the latest version. ### Checklist - [X] I have read the [CONTRIBUTING.md](https://github.com/google/adk-python/blob/main/CONTRIBUTING.md) document. - [X] I have performed a self-review of my own code. Co-authored-by: Hangfei Lin <hangfei@google.com> COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/3638 from gioboa:ci/actions-versions f7d6f3b5233e8cb135c8af88d5b6e0ead8382055 PiperOrigin-RevId: 835343177
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
name: ADK Issue Triaging Agent
|
|
|
|
on:
|
|
issues:
|
|
types: [labeled]
|
|
schedule:
|
|
# Run every 6 hours to triage planned but not triaged issues
|
|
- cron: '0 */6 * * *'
|
|
|
|
jobs:
|
|
agent-triage-issues:
|
|
runs-on: ubuntu-latest
|
|
# Only run if labeled with "planned" or if it's a scheduled run
|
|
if: github.event_name == 'schedule' || github.event.label.name == 'planned'
|
|
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 Triaging Script
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.ADK_TRIAGE_AGENT }}
|
|
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
|
|
GOOGLE_GENAI_USE_VERTEXAI: 0
|
|
OWNER: 'google'
|
|
REPO: 'adk-python'
|
|
INTERACTIVE: 0
|
|
EVENT_NAME: ${{ github.event_name }} # 'issues', 'schedule', etc.
|
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
|
ISSUE_TITLE: ${{ github.event.issue.title }}
|
|
ISSUE_BODY: ${{ github.event.issue.body }}
|
|
ISSUE_COUNT_TO_PROCESS: '3' # Process 3 issues at a time on schedule
|
|
PYTHONPATH: contributing/samples
|
|
run: python -m adk_triaging_agent.main
|