From 2cd892bccc6147258fbf9e2dc5547ac2fc74407e Mon Sep 17 00:00:00 2001 From: Rajiv Ranjan Singh Date: Fri, 2 Jul 2021 11:08:32 +0530 Subject: [PATCH 1/2] added issue and pr templates Signed-off-by: Rajiv Ranjan Singh --- .github/ISSUE_TEMPLATE/bug.md | 28 +++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/documentation.md | 8 +++++++ .github/ISSUE_TEMPLATE/feature.md | 8 +++++++ .github/PULL_REQUEST_TEMPLATE.md | 24 +++++++++++++++++++++ 4 files changed, 68 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.md create mode 100644 .github/ISSUE_TEMPLATE/documentation.md create mode 100644 .github/ISSUE_TEMPLATE/feature.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md new file mode 100644 index 0000000..ef1395f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -0,0 +1,28 @@ +--- +name: 🐛 Bug Report +about: Submit a bug report to help us improve +--- + +## 🐛 Bug Report + +(A clear and concise description of what the bug is.) + +## To Reproduce + +(Write your steps here:) + +1. Step 1... +1. Step 2... +1. Step 3... + +## Expected behavior + +(Write what you thought would happen.) + +## Actual Behavior + +(Write what happened. Add screenshots, if applicable.) + +## Your Environment + +(Environment name, version and operating system.) \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 0000000..7e4b47b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,8 @@ +--- +name: 📚 Documentation +about: Report an issue related to documentation +--- + +## 📚 Documentation + +(A clear and concise description of what the issue is.) \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature.md b/.github/ISSUE_TEMPLATE/feature.md new file mode 100644 index 0000000..79d8a9b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.md @@ -0,0 +1,8 @@ +--- +name: 🚀 Feature +about: Submit a proposal/request for a new feature +--- + +## 🚀 Feature + +(A clear and concise description of what the feature is.) \ 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..0d1f06d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,24 @@ + + +#### References to other Issues or PRs + + + +#### Have you read the [Contributing Guidelines](https://github.com/wechaty/openapi/blob/master/CONTRIBUTING.md)? + +#### Brief description of what is fixed or changed + +#### Other comments From 388785261242f249d938dfb1a494ff923b789f94 Mon Sep 17 00:00:00 2001 From: Rajiv Ranjan Singh Date: Mon, 5 Jul 2021 21:50:29 +0530 Subject: [PATCH 2/2] added checklist and documented about changelog Signed-off-by: Rajiv Ranjan Singh --- .github/PULL_REQUEST_TEMPLATE.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0d1f06d..7999c60 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -9,6 +9,15 @@ Happy contributing! --> +#### Checklist + +- [ ] Commit Messages follow the [Conventional Commits](https://conventionalcommits.org/) pattern + - A feature commit message is prefixed "feat:" + - A bugfix commit message is prefixed "fix:" +- [ ] Tests for the changes have been added +- [ ] CI has been passed. (GitHub actions all turns green) +- [ ] CLA has been signed + #### References to other Issues or PRs #### Brief description of what is fixed or changed #### Other comments + +