Skip to content

Commit 9f11dbd

Browse files
authored
chore: add bug and feature issue templates (#1040)
Signed-off-by: behnazh-w <[email protected]>
1 parent 9069401 commit 9f11dbd

File tree

3 files changed

+87
-0
lines changed

3 files changed

+87
-0
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug or unexpected behavior in Macaron.
4+
title: "[Bug] - [Describe Issue]"
5+
labels: bug, triage
6+
assignees: ''
7+
---
8+
9+
### Description
10+
Please provide a clear and concise description of the issue you're experiencing with Macaron. Be as detailed as possible about the problem.
11+
12+
### Steps to Reproduce
13+
Please list the steps required to reproduce the issue:
14+
15+
1. **Step 1**: [Describe the first step]
16+
2. **Step 2**: [Describe the second step]
17+
3. **Step 3**: [Describe the third step]
18+
4. [Continue adding steps if necessary]
19+
20+
### Expected Behavior
21+
What were you expecting to happen?
22+
23+
### Actual Behavior
24+
What actually happened? Please include any error messages, logs, or unexpected behavior you observed.
25+
26+
### Debug Information
27+
Please run the command again with the `--verbose` [option](https://oracle.github.io/macaron/pages/cli_usage/index.html#cmdoption-v) to provide debug information. This will help us diagnose the issue more effectively. You can add this option to the command like this:
28+
29+
```shell
30+
./run_macaron.sh --verbose [other options]
31+
```
32+
33+
Attach the debug output here if possible.
34+
35+
### Environment Information
36+
To assist with troubleshooting, please provide the following information about your environment:
37+
38+
Operating System: (e.g., Ubuntu 20.04, macOS 11.2)
39+
40+
CPU architecture information (e.g., x86-64 (AMD64))
41+
42+
Bash Version: (Run bash --version to get the version)
43+
44+
Docker or Podman Version: (Run docker --version to get the version)
45+
46+
If you are using Macaron as a Python package, please indicate that in your environment details and specify the Python version you are using.
47+
48+
Macaron version or commit hash where the issue occurs.
49+
50+
Additional Information: (Any other relevant details, such as hardware or network environment, such as proxies)
51+
52+
### Screenshots or Logs
53+
If applicable, please provide screenshots or logs that illustrate the bug.
54+
55+
### Additional Information
56+
Any other information that might be useful to identify or fix the bug. For example:
57+
58+
Any steps that worked around the issue
59+
60+
Specific configurations or files that may be relevant

.github/ISSUE_TEMPLATE/config.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Copyright (c) 2025 - 2025, Oracle and/or its affiliates. All rights reserved.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/.
3+
4+
blank_issues_enabled: false
5+
contact_links:
6+
- name: GitHub Discussions
7+
url: https://github.com/oracle/macaron/discussions
8+
about: Please ask and answer questions here.
9+
- name: Security Reports
10+
url: https://github.com/oracle/macaron/blob/main/SECURITY.md
11+
about: Please report security vulnerabilities following the instructions.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a new feature or enhancement for Macaron.
4+
title: "[Feature Request] - [Describe Feature]"
5+
labels: enhancement, feature
6+
assignees: ''
7+
8+
---
9+
10+
### Description
11+
Please provide a clear and concise description of the feature or enhancement you'd like to see in Macaron. Explain why it would be useful and how it could improve the tool.
12+
13+
### Proposed Feature
14+
What functionality or feature would you like to add to Macaron? Please describe it in detail.
15+
16+
### Use Case

0 commit comments

Comments
 (0)