From 039869865763eec5e320a440d2814d18df0d7799 Mon Sep 17 00:00:00 2001 From: "yadong.zhang" Date: Wed, 22 Jul 2020 22:15:14 +0800 Subject: [PATCH] :egg: Add issue and Pull Request templates for github --- .github/ISSUE_TEMPLATE/bug_report.md | 32 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 15 +++++++++++ .github/ISSUE_TEMPLATE/request-help.md | 15 +++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 13 +++++++++ 4 files changed, 75 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/request-help.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..67b0747 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report template +about: Please use this template for reporting suspected bugs. +title: 'bug:' +labels: 'bug' +assignees: '' +--- + +## Pre-submission checklist: + +- [ ] I have searched the relevant information in the existing list of Issues. +- [ ] I have searched the developer documentation for that information: https://justauth.wiki +- [ ] I have read the relevant Q&A: https://justauth.wiki/#/Q&A + +## Issue description + +## Environment + +- JustAuth version(e.g. `1.15.1`): + +### Minimal test code / Steps to reproduce the issue +1. +2. +3. + +## What's the actual result? (including assertion message & call stack if applicable) + +> Be sure to provide a complete and detailed exception stack. + + +## What's the expected result? + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..e08a761 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,15 @@ +--- +name: Feature Request +about: Please use this template for describing new features. +title: 'feat: ' +labels: 'Feature Request' +assignees: '' +--- + +## Why did you add this feature? + +## Feature description + + + + diff --git a/.github/ISSUE_TEMPLATE/request-help.md b/.github/ISSUE_TEMPLATE/request-help.md new file mode 100644 index 0000000..711470f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/request-help.md @@ -0,0 +1,15 @@ +--- +name: Request help template +about: Please use this template for requesting help. +title: 'request help:' +labels: 'question' +assignees: '' + +--- + + +## Issue description + +## Environment + +- JustAuth version(e.g. `1.15.1`): \ 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..5e83d1b --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,13 @@ +## What this PR does / why we need it: + + +## Pre-submission checklist: +- [ ] Did you explain what problem does this PR solve? +- [ ] What new features have been added? +- [ ] Have you added corresponding test cases? +- [ ] Have you modified the corresponding document? +- [ ] Is this PR backward compatible? + + + + -- GitLab