Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
issues templates added
Browse files Browse the repository at this point in the history
  • Loading branch information
paramtamtam committed Jun 24, 2018
1 parent eb965e5 commit bf3c657
Show file tree
Hide file tree
Showing 6 changed files with 92 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ storage/*.cache
**/.gitignore
.git
.gitattributes
.github

# Docker
.dockerignore
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ phpunit.xml export-ignore
nginx.conf.sample export-ignore
bower.json export-ignore
.bowerrc export-ignore
.github export-ignore
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
name: Bug report
about: Create a report to help us improve

---

## Describe the bug

> A clear and concise description of what the bug is.
### Expected behaviour

> Tell us what should happen.
### Actual behaviour

> Tell us what happens instead.
### Steps to reproduce the behavior:

> Put some code example:
>
> ```php
> $some = new \stdClass();
> echo $some;
>
> PHP Catchable fatal error: Object of class stdClass could not be converted to string in Command line code on line 2
> PHP Stack trace:
> PHP 1. {main}() Command line code:0
> ```
## System information
> Please, complete the following information:
- PHP version(s): [e.g. `7.2.6`]
- Package version(s): [e.g. `1.0.1`]
## Additional context
> Add any other context about the problem here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this package

---

### Is your feature request related to a problem?

> A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
### Describe the solution you'd like

> A clear and concise description of what you want to happen.
## Additional context

> Add any other context about the feature request here.
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: Question
about: Ask anything

---

> If you have any questions feel free to ask
25 changes: 25 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
| Q | A
| ------------- | ---
| Bug fix? | Yes or No
| New feature? | Yes or No

## Description

> Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Fixes # (issue)

## Checklist

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I wrote unit tests for my code
- [ ] I have made changes in [CHANGELOG.md](https://github.com/tarampampam/mikrotik-hosts-parser/blob/master/CHANGELOG.md) file

> About your changes in `CHANGELOG.md`:
>
> * Add new version header like `## v1.x.x`, if it does not exists
> * Add description under `added`/`changed`/`fixed` sections
> * Add reference to closed issues `[#000]`
> * Add link to issue in the end of document

0 comments on commit bf3c657

Please sign in to comment.