-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: π Add Code changes request template
β Closes: #165
- Loading branch information
1 parent
774ea33
commit 4361a05
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: "β¨ Code Change Request" | ||
description: "Request a code change or feature enhancement" | ||
title: "CODE CHANGE:" | ||
labels: ["Enhancement", "Code Change"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: "Is there an existing issue for this?" | ||
description: "Please search to see if an issue already exists for the code change you are requesting." | ||
options: | ||
- label: "I have searched the existing issues" | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Describe the code change" | ||
description: "A concise description of the code change or feature enhancement you are requesting." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Proposed solution" | ||
description: "Describe your proposed solution or implementation details." | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: "Record" | ||
options: | ||
- label: "I agree to follow this project's Code of Conduct" | ||
required: true | ||
- label: "I'm a GSSOC'24 contributor" | ||
- label: "I want to work on this issue" |