Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GSoD 2021] Added issue and pull request templates #139

Merged
merged 5 commits into from
Sep 8, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.)

iamrajiv marked this conversation as resolved.
Show resolved Hide resolved
## 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

iamrajiv marked this conversation as resolved.
Show resolved Hide resolved
(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://github.com/wechaty/grpc/blob/master/CONTRIBUTING.md

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://github.com/wechaty/grpc/blob/master/CONTRIBUTING.md)?

#### 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.
-->