Skip to content

Commit 64fe6ec

Browse files
Create config.yml for PR templates
Added configuration for multiple PR templates in GitHub.
1 parent cc9d417 commit 64fe6ec

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Allows contributors to choose from multiple PR templates in GitHub’s UI.
2+
# Place this file inside: .github/PULL_REQUEST_TEMPLATE/config.yml
3+
4+
# Default template (if none is selected)
5+
default_template: general_pr.md
6+
7+
# Display order and descriptions for PR templates
8+
templates:
9+
- name: 🔧 General Pull Request
10+
description: Use this for normal changes, small fixes, or improvements.
11+
file: general_pr.md
12+
13+
- name: 🐞 Bug Fix PR
14+
description: Fixes a specific issue or resolves a reported bug.
15+
file: bug_fix_pr.md
16+
17+
- name: ✨ Feature Addition PR
18+
description: Adds a new feature or command to MyCMD.
19+
file: feature_pr.md
20+
21+
- name: 🧱 Refactor / Code Cleanup PR
22+
description: Internal refactor or optimization without changing features.
23+
file: refactor_pr.md
24+
25+
- name: 🧾 Documentation Update PR
26+
description: Improves README, Wiki, or any documentation content.
27+
file: documentation_pr.md

0 commit comments

Comments
 (0)