chore: Update label name for bot triaged issues

Also assign agent engine related issue to yeesian as poc

PiperOrigin-RevId: 783941809
This commit is contained in:
Shangjie Chen
2025-07-16 16:39:25 -07:00
committed by Copybara-Service
parent 2f6ab08580
commit eccb484985
3 changed files with 4 additions and 2 deletions
@@ -31,7 +31,7 @@ if not VERTEXAI_DATASTORE_ID:
OWNER = os.getenv("OWNER", "google")
REPO = os.getenv("REPO", "adk-python")
BOT_RESPONSE_LABEL = os.getenv("BOT_RESPONSE_LABEL", "bot_responded")
BOT_RESPONSE_LABEL = os.getenv("BOT_RESPONSE_LABEL", "bot responded")
DISCUSSION_NUMBER = os.getenv("DISCUSSION_NUMBER")
IS_INTERACTIVE = os.getenv("INTERACTIVE", "1").lower() in ["true", "1"]
@@ -26,6 +26,7 @@ from google.adk import Agent
import requests
LABEL_TO_OWNER = {
"agent engine": "yeesian",
"documentation": "polong",
"services": "DeanChensj",
"question": "",
@@ -154,6 +155,7 @@ root_agent = Agent(
- If it's about model support(non-Gemini, like Litellm, Ollama, OpenAI models), label it with "models".
- If it's about tracing, label it with "tracing".
- If it's agent orchestration, agent definition, label it with "core".
- If it's about agent engine, label it with "agent engine".
- If you can't find a appropriate labels for the issue, follow the previous instruction that starts with "IMPORTANT:".
Call the `add_label_and_owner_to_issue` tool to label the issue, which will also assign the issue to the owner of the label.
@@ -26,7 +26,7 @@ if not GITHUB_TOKEN:
OWNER = os.getenv("OWNER", "google")
REPO = os.getenv("REPO", "adk-python")
BOT_LABEL = os.getenv("BOT_LABEL", "bot_triaged")
BOT_LABEL = os.getenv("BOT_LABEL", "bot triaged")
EVENT_NAME = os.getenv("EVENT_NAME")
ISSUE_NUMBER = os.getenv("ISSUE_NUMBER")
ISSUE_TITLE = os.getenv("ISSUE_TITLE")