Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all 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
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
********************************************************************************

name: Bug report about: Report a bug in gomock

********************************************************************************

**Actual behavior** A clear and concise description of what the bug is.

**Expected behavior** A clear and concise description of what you expected to
happen.

**To Reproduce** Steps to reproduce the behavior

1. ...
2. ...

**Additional Information**

- gomock mode (reflect or source)
- gomock version or git ref
- golang version

**Triage Notes for the Maintainers**

<!-- 🎉🎉🎉 Thank you for an opening an issue !!! 🎉🎉🎉 We are doing our best to get to this. Please help us by helping us prioritize your issue by filling the section below -->

**Description** | **Yes/No**
---------------------------------------------------- | ------------------------
Please check if this a new feature you are proposing | <ul><li>- [ ] </li></ul>
Please check if this is an issue with mockgen | <ul><li>- [ ] </li></ul>
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: true
#contact_links:
# - name: GitHub Community Forum
# url: https://github.community/
# about: Please ask and answer questions here.
# - name: GitHub Security Bug Bounty
# url: https://bounty.github.com/
# about: Please report security vulnerabilities here.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
********************************************************************************

name: Feature request about: Propose a new feature for gomock

********************************************************************************

*Requested feature* A clear description of the desired feature and an example of
how it would be used.

*Why the feature is needed* A clear description of how this feature is not
served by existing functionality in gomock.

*(Optional) Proposed solution* A clear description of a proposed method for
adding this feature to gomock.
31 changes: 31 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!-- 🎉🎉🎉 Thank you for the PR!!! 🎉🎉🎉 -->


Fixes #<issue number>. _in case of a bug fix, this should point to a bug and any other related issue(s)_

**Description**

<!-- Describe your changes here- ideally you can get that description straight from
your descriptive commit message(s)! -->

**Submitter Checklist**

These are the criteria that every PR should meet, please check them off as you
review them:

- [ ] Includes tests

**Reviewer Notes**

- [ ] The code flow looks good.
- [ ] Tests added.


**Release Notes**

Describe any changes here so maintainer can include it in the release notes, or delete this block.

```
Examples of user facing changes:
- Improved API for custom matchers
```