microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
hve-core-v3.2.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/ISSUE_TEMPLATE/bug-report.yml

65lines · modecode

1name: Bug Report
2description: Report a bug or unexpected behavior
3title: "fix: "
4labels: ["bug", "needs-triage"]
5body:
6 - type: markdown
7 attributes:
8 value: |
9 Thanks for reporting a bug! Please provide the following information.
10
11 - type: dropdown
12 id: component
13 attributes:
14 label: Component
15 description: Which component is affected?
16 options:
17 - Instruction Files
18 - Prompts
19 - Custom Agents
20 - Skills
21 - VS Code Extension
22 - Scripts
23 - Documentation
24 - Other
25 validations:
26 required: true
27
28 - type: textarea
29 id: description
30 attributes:
31 label: Bug Description
32 description: A clear and concise description of the bug
33 placeholder: Describe what happened
34 validations:
35 required: true
36
37 - type: textarea
38 id: expected
39 attributes:
40 label: Expected Behavior
41 description: What did you expect to happen?
42 placeholder: Describe the expected behavior
43 validations:
44 required: true
45
46 - type: textarea
47 id: reproduction
48 attributes:
49 label: Steps to Reproduce
50 description: How can we reproduce this issue?
51 placeholder: |
52 1. Go to '...'
53 2. Run '...'
54 3. See error
55 validations:
56 required: false
57
58 - type: textarea
59 id: additional-context
60 attributes:
61 label: Additional Context
62 description: Add any other context about the problem
63 placeholder: Screenshots, logs, or other relevant information
64 validations:
65 required: false
66