Skip to content

Commit e56f898

Browse files
DeanChensjcopybara-github
authored andcommitted
chore: Update label name for bot triaged issues
Also assign agent engine related issue to yeesian as poc PiperOrigin-RevId: 783572977
1 parent 2f6ab08 commit e56f898

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

contributing/samples/adk_answering_agent/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
OWNER = os.getenv("OWNER", "google")
3333
REPO = os.getenv("REPO", "adk-python")
34-
BOT_RESPONSE_LABEL = os.getenv("BOT_RESPONSE_LABEL", "bot_responded")
34+
BOT_RESPONSE_LABEL = os.getenv("BOT_RESPONSE_LABEL", "bot responded")
3535
DISCUSSION_NUMBER = os.getenv("DISCUSSION_NUMBER")
3636

3737
IS_INTERACTIVE = os.getenv("INTERACTIVE", "1").lower() in ["true", "1"]

contributing/samples/adk_triaging_agent/agent.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import requests
2727

2828
LABEL_TO_OWNER = {
29+
"agent engine": "yeesian",
2930
"documentation": "polong",
3031
"services": "DeanChensj",
3132
"question": "",
@@ -154,6 +155,7 @@ def add_label_and_owner_to_issue(
154155
- If it's about model support(non-Gemini, like Litellm, Ollama, OpenAI models), label it with "models".
155156
- If it's about tracing, label it with "tracing".
156157
- If it's agent orchestration, agent definition, label it with "core".
158+
- If it's about agent engine, label it with "agent engine".
157159
- If you can't find a appropriate labels for the issue, follow the previous instruction that starts with "IMPORTANT:".
158160
159161
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.

contributing/samples/adk_triaging_agent/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
OWNER = os.getenv("OWNER", "google")
2828
REPO = os.getenv("REPO", "adk-python")
29-
BOT_LABEL = os.getenv("BOT_LABEL", "bot_triaged")
29+
BOT_LABEL = os.getenv("BOT_LABEL", "bot triaged")
3030
EVENT_NAME = os.getenv("EVENT_NAME")
3131
ISSUE_NUMBER = os.getenv("ISSUE_NUMBER")
3232
ISSUE_TITLE = os.getenv("ISSUE_TITLE")

0 commit comments

Comments
 (0)