From 36804c017decbcdd6b75c168dc24361a27f91ce4 Mon Sep 17 00:00:00 2001 From: sandypockets Date: Wed, 13 Dec 2023 23:43:07 -0500 Subject: [PATCH] Chore: Add GitHub templates --- .github/ISSUE_TEMPLATE/bug_report.md | 32 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++ .github/ISSUE_TEMPLATE/question.md | 14 ++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 32 +++++++++++++++++++++++ 4 files changed, 98 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/question.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..46559ba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug Report +about: Create a report to help us improve +title: "[BUG]" +labels: bug +assignees: '' + +--- + +**Describe the Bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected Behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Environment (please complete the following information):** +- OS: [e.g. iOS] +- Browser [e.g. chrome, safari] +- Version [e.g. 22] + +**Additional Context** +Add any other context about the problem here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..f76e960 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature Request +about: Suggest an idea for this project +title: "[FEATURE]" +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 0000000..3c46249 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,14 @@ +--- +name: General Question +about: Ask a question about the project +title: "[QUESTION]" +labels: question +assignees: '' + +--- + +**Your Question** +Describe your question in detail here. + +**Additional Context** +Add any additional context or information that might help us understand your question better. \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..38910f3 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,32 @@ +# Pull Request Template + +Thank you for your contribution to `easy-dates-picker`! Before submitting your PR, please make sure you meet the following criteria and check off the following list. + +## Checklist + +- [ ] **I have read the [contributing guidelines](https://github.com/sandypockets/easy-dates-picker/blob/main/CONTRIBUTING.md).** +- [ ] I have linked the issue the PR addresses, or if there is no issue, I have described the issue or feature I am addressing. + +## PR Description + +_Please describe the changes you have made. Include the following details:_ + +- Why is this change necessary? +- What does it address? +- What are the significant changes? + +## Tests + +_Describe the tests you have added to validate your changes. If you haven't added any tests, explain why._ + +## Documentation + +_Describe the documentation updates you have made (if applicable)._ + +## Additional Information + +_Any additional information or context you would like to provide regarding the PR._ + +--- + +Once again, thanks for contributing to `easy-dates-picker`! \ No newline at end of file