From de2ff81060a609bbda2b43f4acef9ff2b541d084 Mon Sep 17 00:00:00 2001 From: heyitsaamir Date: Fri, 14 Nov 2025 17:04:41 -0800 Subject: [PATCH 1/3] Add github issues template --- .github/ISSUE_TEMPLATE/bug_report.yml | 72 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++ README.md | 8 +-- 3 files changed, 82 insertions(+), 3 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..dbade9ab --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,72 @@ +name: Bug Report +description: Report a bug or issue with the Teams .NET SDK +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to report a bug! Please fill out the information below. + + - type: textarea + id: description + attributes: + label: Bug Description + description: A clear and concise description of what the bug is + placeholder: Tell us what you see! + validations: + required: true + + - type: textarea + id: reproduction + attributes: + label: Steps to Reproduce + description: Steps to reproduce the behavior + placeholder: | + 1. Install package '...' + 2. Run code '...' + 3. See error + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected Behavior + description: What you expected to happen + validations: + required: true + + - type: textarea + id: actual + attributes: + label: Actual Behavior + description: What actually happened + validations: + required: true + + - type: input + id: version + attributes: + label: SDK Version + description: Which version of the Teams .NET SDK are you using? + placeholder: e.g., 1.0.0 + validations: + required: true + + - type: input + id: dotnet-version + attributes: + label: .NET Version + description: Which version of .NET are you using? + placeholder: e.g., 8.0 + validations: + required: true + + - type: textarea + id: additional + attributes: + label: Additional Context + description: Add any other context about the problem here (logs, screenshots, etc.) + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..51a0f208 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Question or Feature Request + url: https://github.com/microsoft/teams-sdk/discussions + about: Please use GitHub Discussions for questions and feature requests diff --git a/README.md b/README.md index ce71da48..63fe6dba 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,11 @@ a suite of packages used to build on the Teams Platform. [![📖 Getting Started](https://img.shields.io/badge/📖%20Getting%20Started-blue?style=for-the-badge)](https://microsoft.github.io/teams-ai) +## Questions & Issues + +- **Questions or Feature Requests**: Please use [GitHub Discussions](https://github.com/microsoft/teams-sdk/discussions) +- **Bug Reports**: Please [open an issue](https://github.com/microsoft/teams.net/issues/new/choose) + ### Build ```bash @@ -57,6 +62,3 @@ $: dotnet test - [`Microsoft.Teams.Plugins.External.Mcp`](./Libraries/Microsoft.Teams.Plugins/Microsoft.Teams.Plugins.External/Microsoft.Teams.Plugins.External.Mcp/README.md) - [`Microsoft.Teams.Plugins.External.McpClient`](./Libraries/Microsoft.Teams.Plugins/Microsoft.Teams.Plugins.External/Microsoft.Teams.Plugins.External.McpClient/README.md) -## Feedback and Support - -For questions, feedback, or support regarding the Teams AI SDK, please contact us at [TeamsAISDKFeedback@microsoft.com](mailto:TeamsAISDKFeedback@microsoft.com). From 4e009b57b5450c6f7fbdba382505320184773b4e Mon Sep 17 00:00:00 2001 From: heyitsaamir Date: Fri, 14 Nov 2025 17:13:26 -0800 Subject: [PATCH 2/3] Fix --- CONTRIBUTING.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..219d8861 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,5 @@ +Please refer to this sub-module's root repo Contributing guide at [Teams SDK Contributing](https://github.com/microsoft/teams-sdk/blob/main/CONTRIBUTING.md) + +## Multi-Language SDK + +The Teams SDK is maintained across three languages: **Python**, **TypeScript**, and **.NET**. When proposing new features, please discuss them in a language-agnostic way in [GitHub Discussions](https://github.com/microsoft/teams-sdk/discussions). This ensures that features can be implemented consistently across all three SDKs and benefits the entire Teams developer community. From 1d2c5f62c0b4e920c29664cd6cac5ff25105b222 Mon Sep 17 00:00:00 2001 From: Aamir Jawaid <48929123+heyitsaamir@users.noreply.github.com> Date: Wed, 19 Nov 2025 12:15:53 -0800 Subject: [PATCH 3/3] Disable blank issues in issue template --- .github/ISSUE_TEMPLATE/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 51a0f208..a052bfcf 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,4 @@ -blank_issues_enabled: true +blank_issues_enabled: false contact_links: - name: Question or Feature Request url: https://github.com/microsoft/teams-sdk/discussions