Skip to content

chore: Update label name for bot triaged issues #1987

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contributing/samples/adk_answering_agent/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

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"]
2 changes: 2 additions & 0 deletions contributing/samples/adk_triaging_agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import requests

LABEL_TO_OWNER = {
"agent engine": "yeesian",
"documentation": "polong",
"services": "DeanChensj",
"question": "",
Expand Down Expand Up @@ -154,6 +155,7 @@ def add_label_and_owner_to_issue(
- 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.
Expand Down
2 changes: 1 addition & 1 deletion contributing/samples/adk_triaging_agent/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

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")
Expand Down