Skip to content

Commit

Permalink
[GSoD 2021] Added issue and pull request templates (#139)
Browse files Browse the repository at this point in the history
* added issue and pr templates

Signed-off-by: Rajiv Ranjan Singh <[email protected]>

* added checklist and documented about changelog

Signed-off-by: Rajiv Ranjan Singh <[email protected]>

* added checklist and documented about changelog

Signed-off-by: Rajiv Ranjan Singh <[email protected]>

* updated contributing links

Co-authored-by: Huan (李卓桓) <[email protected]>
  • Loading branch information
iamrajiv and huan authored Sep 8, 2021
1 parent 1bb4345 commit b1915f2
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
@@ -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.)
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: 📚 Documentation
about: Report an issue related to documentation
---

## 📚 Documentation

(A clear and concise description of what the issue is.)
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.md
Original file line number Diff line number Diff line change
@@ -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.)
44 changes: 44 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!--
Thank you for sending the PR! We appreciate you spending the time to work on these changes.
Help us understand your motivation by explaining why you decided to make this change.
You can learn more about contributing to Wechaty gRPC here: https://wechaty.js.org/docs/contributing/
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

<!-- If this pull request fixes an issue, write "Fixes #NNNN" in that exact
format, e.g. "Fixes #1234" (see
https://tinyurl.com/auto-closing for more information). Also, please
write a comment on that issue linking back to this pull request once it is
open. -->

#### Have you read the [Contributing Guidelines](https://wechaty.js.org/docs/contributing/)?

#### Brief description of what is fixed or changed

#### Other comments

<!--
Don't forget about CHANGELOG!
Changelog entry format:
- [#<PR-id>](<PR-URL>) Wechaty gRPC <Component> ...
<PR-id> Id of your pull request.
<PR-URL> URL of your PR such as https://github.com/wechaty/grpc/pull/<PR-id>
<Component> Component affected by your changes such as csharp, go, java, etc.
-->

0 comments on commit b1915f2

Please sign in to comment.