You've already forked adk-python
mirror of
https://github.com/encounter/adk-python.git
synced 2026-03-30 10:57:20 -07:00
78eea1aa55
The `agent-triage-pull-request` job will now only run if the pull request does not have the 'bot triaged' or 'google-contributor' labels, avoiding redundant and unnecessary triage actions. PiperOrigin-RevId: 804732073
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
name: ADK Pull Request Triaging Agent
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened, edited]
|
|
|
|
jobs:
|
|
agent-triage-pull-request:
|
|
if: "!contains(github.event.pull_request.labels.*.name, 'bot triaged') && !contains(github.event.pull_request.labels.*.name, 'google-contributor')"
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
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 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'
|
|
PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
|
|
INTERACTIVE: ${{ vars.PR_TRIAGE_INTERACTIVE }}
|
|
PYTHONPATH: contributing/samples
|
|
run: python -m adk_pr_triaging_agent.main
|