microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
733a37f2b7310e6fd954187427f2af0e713dc286

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/ISSUE_TEMPLATE/bug_report.yml

72lines · modecode

1name: Bug Report
2description: Report a bug or issue with the Teams .NET SDK
3title: "[Bug]: "
4labels: ["bug"]
5body:
6 - type: markdown
7 attributes:
8 value: |
9 Thanks for taking the time to report a bug! Please fill out the information below.
10
11 - type: textarea
12 id: description
13 attributes:
14 label: Bug Description
15 description: A clear and concise description of what the bug is
16 placeholder: Tell us what you see!
17 validations:
18 required: true
19
20 - type: textarea
21 id: reproduction
22 attributes:
23 label: Steps to Reproduce
24 description: Steps to reproduce the behavior
25 placeholder: |
26 1. Install package '...'
27 2. Run code '...'
28 3. See error
29 validations:
30 required: true
31
32 - type: textarea
33 id: expected
34 attributes:
35 label: Expected Behavior
36 description: What you expected to happen
37 validations:
38 required: true
39
40 - type: textarea
41 id: actual
42 attributes:
43 label: Actual Behavior
44 description: What actually happened
45 validations:
46 required: true
47
48 - type: input
49 id: version
50 attributes:
51 label: SDK Version
52 description: Which version of the Teams .NET SDK are you using?
53 placeholder: e.g., 1.0.0
54 validations:
55 required: true
56
57 - type: input
58 id: dotnet-version
59 attributes:
60 label: .NET Version
61 description: Which version of .NET are you using?
62 placeholder: e.g., 8.0
63 validations:
64 required: true
65
66 - type: textarea
67 id: additional
68 attributes:
69 label: Additional Context
70 description: Add any other context about the problem here (logs, screenshots, etc.)
71 validations:
72 required: false
73