Skip to content

Commit f0ba084

Browse files
authored
Merge pull request #13 from fulll/config-github-add-issue-and-pr-templates
config(github): add issue and pr templates
2 parents 6c2a4fd + 1b2cf64 commit f0ba084

4 files changed

Lines changed: 63 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 🚀 Feature Request
2+
description: Suggest an idea, feature, or enhancement
3+
labels: [enhancement]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for submitting an idea. It helps make github-code-search better.
9+
- type: textarea
10+
attributes:
11+
label: What is the problem this feature would solve?
12+
validations:
13+
required: true
14+
- type: textarea
15+
attributes:
16+
label: What is the feature you are proposing to solve the problem?
17+
validations:
18+
required: true
19+
- type: textarea
20+
attributes:
21+
label: What alternatives have you considered?
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: 🐛 Bug Report
2+
description: Report an issue that should be fixed
3+
labels:
4+
- bug
5+
- needs triage
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thank you for submitting a bug report. It helps make github-code-search better.
11+
12+
Make sure you are running the [latest](https://github.com/fulll/github-code-search?tab=readme-ov-file#installation) version of github-code-search.
13+
The bug you are experiencing may already have been fixed.
14+
15+
Please try to include as much information as possible.
16+
17+
- type: input
18+
attributes:
19+
label: What version of github-code-search is running?
20+
description: Copy the output of `github-code-search --version`
21+
- type: textarea
22+
attributes:
23+
label: What steps can reproduce the bug?
24+
description: Explain the bug and provide a code snippet that can reproduce it.
25+
validations:
26+
required: true
27+
- type: textarea
28+
attributes:
29+
label: What is the expected behavior?
30+
description: If possible, please provide text instead of a screenshot.
31+
- type: textarea
32+
attributes:
33+
label: What do you see instead?
34+
description: If possible, please provide text instead of a screenshot.
35+
- type: textarea
36+
attributes:
37+
label: Additional information
38+
description: Is there anything else you think we should know?

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true

.github/pull_request_template.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### What does this PR do?
2+
3+
### How did you verify your code works?

0 commit comments

Comments
 (0)