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

Add new categorized issue templates #704

Merged
merged 1 commit into from
May 12, 2018
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
34 changes: 4 additions & 30 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,6 @@
| Q | A
| ---------------------- | -----
| Bug report? | yes/no
| Feature request? | yes/no
| TYPO3 version | x.y.z
| TYPO3 Console version | x.y.z
| TYPO3 Composer mode? | yes/no
<!---
Thanks for filing an issue 😄! Before you submit, please read the following:

<!--
- Please fill in this template according to your issue.
- For support request or how-tos, ask on https://stackoverflow.com/ and tag with #typo3-console and #typo3
- Otherwise, replace this comment by the description of your issue.
Check the other issue templates if you are trying to submit a bug report, feature request, or question
Search open/closed issues before submitting since someone might have asked the same thing before!
-->

I use TYPO3 in composer mode and this is my root `composer.json`:
```json
...replace me...
```

When I run this command:

```
...replace me...
```

I get the following output:

```
...replace me...
```

And I expected this to happen:
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: 🐛 Bug Report
about: If something isn't working as expected 🤔.

---

## Bug Report

**Current Behavior**
A clear and concise description of the behavior.

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

**TYPO3 Console command executed**
```
typo3cms command:name --option argument
```

**TYPO3 Console command output**
```
command output including stacktrace in case an exception occurred
(Make sure you called the command with -vvv option to get the trace)
```

**Environment**
- TYPO3 Console version(s): [e.g. 4.9.3, 5.2.0]
- TYPO3 version(s): [e.g. 8.7.12, 9.2.0]
- Is your TYPO3 installation set up with Composer (Composer Mode): [yes, no]
- OS: [e.g. OSX 10.13.4, Windows 10]

**Possible Solution**
<!--- Only if you have suggestions on a fix for the bug -->

**Additional context**
Add any other context about the problem here, e.g. root composer.json when using Composer mode.
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/Feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: 🚀 Feature Request
about: I have a suggestion (and may want to implement it 🙂)!

---

## Feature Request

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I have an issue when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen. Add any considered drawbacks.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Teachability, Documentation, Adoption, Migration Strategy**
If you can, explain how users will be able to use this and possibly amend the documentation.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/Support_question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: 🤗 Support Question
about: If you have a question 💬, please check out our Slack or StackOverflow!

---

--------------^ Click "Preview" for a nicer view!
We primarily use GitHub as an issue tracker; for usage and support questions, please check out these resources below. Thanks! 😁.

---

* Slack Chat: [https://typo3.slack.com](https://typo3.slack.com) in channel `#typo3-console` (you can sign-up at [https://forger.typo3.com/slack](https://forger.typo3.com/slack) for an invite)
* StackOverflow: https://stackoverflow.com/questions/tagged/typo3-console using the tag `typo3-console`
* Twitter: If it's just a quick question you can ping [@helhum](https://twitter.com/helhum) on Twitter
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,10 @@ into the installation root directory during activation.

Look at the [Issues](https://github.com/TYPO3-Console/typo3_console/issues)
for what has been planned to be implemented in the (near) future.

## Credits
Thanks to all contributors and everybody providing feedback.

Special thanks to [@hzoo](https://github.com/hzoo) for creating great Github issue templates for [Babel](https://github.com/babel/babel),
which were adopted for this package.