Skip to content

Commit dedc560

Browse files
chore: add issue and pull request templates (#7)
1 parent 81084bc commit dedc560

File tree

3 files changed

+76
-0
lines changed

3 files changed

+76
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Bug Report
2+
description: Create a report to help us improve
3+
title: "fix: "
4+
labels: [bug]
5+
assignees:
6+
- thisissandipp
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report!
12+
- type: textarea
13+
id: what-happened
14+
attributes:
15+
label: What happened?
16+
placeholder: Also tell us, what did you expect to happen?
17+
validations:
18+
required: true
19+
- type: checkboxes
20+
id: terms
21+
attributes:
22+
label: Code of Conduct
23+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/thisissandipp/flutter-interview-questions/blob/main/CODE_OF_CONDUCT.md).
24+
options:
25+
- label: I agree to follow this project's Code of Conduct
26+
required: true
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: New Question
2+
description: Propose a new Flutter interview question to be added to the repository.
3+
title: "question: "
4+
labels: [new question]
5+
assignees:
6+
- thisissandipp
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report!
12+
- type: textarea
13+
id: proposed-question
14+
attributes:
15+
label: Proposed Question
16+
placeholder: Please write the question here.
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: proposed-answer
21+
attributes:
22+
label: Proposed Answer
23+
placeholder: If possible, provide a detailed answer, including any code snippets or explanations. This helps in drafting the final response.
24+
validations:
25+
required: true
26+
- type: checkboxes
27+
id: terms
28+
attributes:
29+
label: Code of Conduct
30+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/thisissandipp/flutter-interview-questions/blob/main/CODE_OF_CONDUCT.md).
31+
options:
32+
- label: I agree to follow this project's Code of Conduct
33+
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Description
2+
3+
[Provide a brief summary of the changes introduced by this PR.]
4+
5+
## Type of Pull Request
6+
7+
- [ ] 🐞 Bug fix (Non-breaking change which fixes issue)
8+
- [ ] ✨ Feature (Non-breaking change which adds functionality)
9+
- [ ] 📚 Documentation update
10+
- [ ] 💥 New interview question/answer
11+
- [ ] 💡 Other... Please describe
12+
13+
## Pull Request Checklist
14+
15+
- [ ] 🚀 I have reviewed my own commit and ensured it follows the project's standards.
16+
- [ ] 📚 I have updated documentation (if necessary).
17+
- [ ] 🤖 I have provided clear and informative commit messages.

0 commit comments

Comments
 (0)