mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
docs: Update ADK triaging agent to only triage planned issues
It also enables the ADK triaging agent to run periodically on planned but not triaged issues. Co-authored-by: Xuan Yang <xygoogle@google.com> PiperOrigin-RevId: 834489103
This commit is contained in:
committed by
Copybara-Service
parent
f13a11e1dc
commit
679d543f8e
@@ -2,11 +2,16 @@ name: ADK Issue Triaging Agent
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [opened, reopened]
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user