Skip to content

Commit b38792c

Browse files
authored
chore: remove hardcoded assignee from issue templates (homeassistant-ai#800)
New issues filed via the startup bug, runtime bug, and agent behavior templates were automatically assigned to julienld. Removing the assignees field so issues start unassigned.
1 parent 3cdc9f4 commit b38792c

4 files changed

Lines changed: 1 addition & 10 deletions

File tree

.github/ISSUE_TEMPLATE/agent_behavior.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: "🤖 AI Agent Behavior Feedback"
22
description: "Report AI agent inefficiency, wrong tool usage, or suggest workflow improvements"
33
title: "[AGENT] "
44
labels: ["agent-behavior"]
5-
assignees:
6-
- julienld
7-
85
body:
96
- type: markdown
107
attributes:

.github/ISSUE_TEMPLATE/runtime_bug.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: "🐛 Runtime Bug"
22
description: "Report a bug that occurs while ha-mcp is running (errors, crashes, incorrect behavior)"
33
title: "[BUG] "
44
labels: ["bug"]
5-
assignees:
6-
- julienld
7-
85
body:
96
- type: markdown
107
attributes:

.github/ISSUE_TEMPLATE/startup_bug.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: "🚀 Startup/Installation Bug"
22
description: "Report a bug preventing ha-mcp from starting, installing, or connecting"
33
title: "[BUG] "
44
labels: ["bug", "startup"]
5-
assignees:
6-
- julienld
7-
85
body:
96
- type: markdown
107
attributes:

src/ha_mcp/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ async def _run_http_with_graceful_shutdown(
573573
_registered_landing_paths: set[str] = set()
574574

575575

576-
def register_browser_landing(mcp_instance: "FastMCP", path: str) -> None:
576+
def register_browser_landing(mcp_instance: "FastMCP | _DeferredMCP", path: str) -> None:
577577
"""Register a GET handler that returns 405 with a helpful message.
578578
579579
Browsers and misconfigured clients that send GET instead of POST will see

0 commit comments

Comments
 (0)