From b9c726882da7bb42f8d858132cb93c29cc452295 Mon Sep 17 00:00:00 2001 From: Damilola Odujoko Date: Thu, 1 Sep 2022 15:26:21 +0100 Subject: [PATCH] Add Issue and PR templates --- .DS_Store | Bin 6148 -> 0 bytes .github/ISSUE_TEMPLATE/bug_report.md | 27 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++++ .github/pull_request_template.md | 13 +++++++++++ .gitignore | 1 + 5 files changed, 61 insertions(+) delete mode 100644 .DS_Store create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/pull_request_template.md diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 8c4f1389aed20ae5dd58171334d1deb4e1a02551..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHKJ5Iwu5S;-RmT1yJxhFu%4NT;mAQwO(Qb0ibVsX=voTaA%s;#kEPZxK)?S7Pb+F`Yo zT+3P>0EG;Y0Wv@a$iP2i z06p8Jz6hix17v^tCSm`<$!&!H#Y|HC5A$N(Am zQw(U;F4`G>DSPYa=d9Nj=q>ap$n|s>Z^b}w#h6$tzUt)_8zbH%c7a|Fzn24f5injT JWZ*X#_yQ-~DuVz3 diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..c7d988c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,27 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[BUG] Bug name goes here" +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. + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..7827f32 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[FEAT] Feature name goes here" +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. + +**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. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..b7330a9 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,13 @@ +## Type of change + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) +- [ ] Documentation update + +## What issue does this change solve? +A clear and concise description of what the solution is. + + +# Additional context +Add any other context or screenshots about the change. \ No newline at end of file diff --git a/.gitignore b/.gitignore index 149b576..e1f0ba4 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ wwwroot/*.js node_modules typings dist +.DS_Store \ No newline at end of file