From cb37d605118a229c123e0e9cce32a15f3713ba5d Mon Sep 17 00:00:00 2001 From: DevelopmentCats Date: Tue, 7 Oct 2025 12:22:24 -0500 Subject: [PATCH 1/2] fix: update display name in to Copilot CLI --- registry/coder-labs/modules/copilot/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/coder-labs/modules/copilot/README.md b/registry/coder-labs/modules/copilot/README.md index 85732d495..f3633d6bb 100644 --- a/registry/coder-labs/modules/copilot/README.md +++ b/registry/coder-labs/modules/copilot/README.md @@ -1,5 +1,5 @@ --- -display_name: Copilot +display_name: Copilot CLI description: GitHub Copilot CLI agent for AI-powered terminal assistance icon: ../../../../.icons/github.svg verified: false From 96f91fe4e8cfabde6d210d6583dcbdd3a80fcb3b Mon Sep 17 00:00:00 2001 From: DevelopmentCats Date: Tue, 7 Oct 2025 12:23:56 -0500 Subject: [PATCH 2/2] chore: version bump patch (0.1.2) --- registry/coder-labs/modules/copilot/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/registry/coder-labs/modules/copilot/README.md b/registry/coder-labs/modules/copilot/README.md index f3633d6bb..20ac8848d 100644 --- a/registry/coder-labs/modules/copilot/README.md +++ b/registry/coder-labs/modules/copilot/README.md @@ -13,7 +13,7 @@ Run [GitHub Copilot CLI](https://docs.github.com/copilot/concepts/agents/about-c ```tf module "copilot" { source = "registry.coder.com/coder-labs/copilot/coder" - version = "0.1.1" + version = "0.1.2" agent_id = coder_agent.example.id workdir = "/home/coder/projects" } @@ -51,7 +51,7 @@ data "coder_parameter" "ai_prompt" { module "copilot" { source = "registry.coder.com/coder-labs/copilot/coder" - version = "0.1.1" + version = "0.1.2" agent_id = coder_agent.example.id workdir = "/home/coder/projects" @@ -71,7 +71,7 @@ Customize tool permissions, MCP servers, and Copilot settings: ```tf module "copilot" { source = "registry.coder.com/coder-labs/copilot/coder" - version = "0.1.1" + version = "0.1.2" agent_id = coder_agent.example.id workdir = "/home/coder/projects" @@ -142,7 +142,7 @@ variable "github_token" { module "copilot" { source = "registry.coder.com/coder-labs/copilot/coder" - version = "0.1.1" + version = "0.1.2" agent_id = coder_agent.example.id workdir = "/home/coder/projects" github_token = var.github_token @@ -156,7 +156,7 @@ Run Copilot as a command-line tool without task reporting or web interface. This ```tf module "copilot" { source = "registry.coder.com/coder-labs/copilot/coder" - version = "0.1.1" + version = "0.1.2" agent_id = coder_agent.example.id workdir = "/home/coder" report_tasks = false