Skip to content

Commit 9faded7

Browse files
authored
Update issue templates
1 parent caaefe4 commit 9faded7

File tree

2 files changed

+67
-0
lines changed

2 files changed

+67
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: 'type: bug'
6+
assignees: zapadi
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Call the Redmine API endpoint '...'
16+
2. Call the client method: `...`
17+
3. Inspect the returned response/data
18+
4. Notice the incorrect behavior or error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Sample Code / Request**
24+
If applicable, add a minimal code snippet or HTTP request that reproduces the issue.
25+
26+
**API Response / Error**
27+
If applicable, paste the response body, error message, or stack trace.
28+
29+
**Environment (please complete the following information):**
30+
- Library version: [e.g. 4.50.0]
31+
- .NET runtime: [e.g. .NET 8.0, .NET Framework 4.8]
32+
- Redmine version: [e.g. 5.1.2]
33+
- OS: [e.g. Windows 11, Ubuntu 22.04]
34+
35+
**Screenshots**
36+
If applicable, add screenshots to help explain the problem.
37+
38+
**Additional context**
39+
Add any other context about the problem here.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[Feature]"
5+
labels: 'type: enhancement, type: feature'
6+
assignees: zapadi
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is.
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
Ex: "Add support for calling the `...` endpoint so that I can [...]"
16+
17+
**Describe alternatives you've considered**
18+
A clear and concise description of any alternative solutions or features you've considered.
19+
Ex: "Right now I make a raw HTTP request using `HttpClient`, but it would be better if the client library exposed [...]"
20+
21+
**Proposed API / Usage Example (if applicable)**
22+
If relevant, provide a code snippet, method signature, or example API request/response.
23+
```csharp
24+
var issue = await client.Issues.GetByIdAsync(123, includeChildren: true);
25+
```
26+
27+
**Additional context**
28+
Add any other context or screenshots about the feature request here.

0 commit comments

Comments
 (0)