Skip to content

Commit

Permalink
📝 Clarify issue process
Browse files Browse the repository at this point in the history
  • Loading branch information
bchatard committed Mar 19, 2022
1 parent c04740e commit c086fe8
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 53 deletions.
13 changes: 0 additions & 13 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

95 changes: 95 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
name: Bug Report
description: Report something working incorrectly
labels: [bug]
assignees:
- bchatard
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: checkboxes
id: faq
attributes:
label: FAQ
description: Please double check that this isn't in [troubleshooting guide](https://github.com/bchatard/alfred-jetbrains/blob/main/doc/troubleshooting.md) or other issues.
options:
- label: Yes, my issue is not listed in [troubleshooting guide](https://github.com/bchatard/alfred-jetbrains/blob/main/doc/troubleshooting.md).
required: true
- label: Yes, my issue is not listed in other issues.
required: true
- type: textarea
id: bug
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
id: steps
attributes:
label: To Reproduce
description: Steps to reproduce the behavior.
placeholder: >
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
validations:
required: false
- type: input
id: alfred-version
attributes:
label: Alfred Version
description: What version of Alfred are you using?
validations:
required: true
- type: input
id: node-version
attributes:
label: Node Version
description: >
What version of node.js were you using? (Only applicable to CLI and node) (Note: the minimum Node version we support is 14.18.2)
validations:
required: true
- type: input
id: npm-version
attributes:
label: NPM Version
description: What version of NPM were you using?
validations:
required: true
- type: input
id: jetbrains-version
attributes:
label: Jetbrains Product & Version
description: Which product and his version are yuo using?
validations:
required: true
- type: dropdown
id: installation-type
attributes:
label: Installation type
description: How did you install your product?
multiple: false
options:
- Classic via .dmg
- Homebrew
- JetBrains ToolBox
validations:
required: true
- type: input
id: os
attributes:
label: OS
description: What version of macOS are you using?
value: macOS 12.3
validations:
required: false
39 changes: 0 additions & 39 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# JetBrains: Open project

**Alfred3** & **Alfred4** workflow to easily open your projects with your favorite JetBrains product.
**Alfred4** workflow to easily open your projects with your favorite JetBrains product.

![npm version](https://img.shields.io/npm/v/@bchatard/alfred-jetbrains.svg?style=for-the-badge)
![npm downloads per week](https://img.shields.io/npm/dm/@bchatard/alfred-jetbrains.svg?style=for-the-badge)
Expand All @@ -12,6 +12,16 @@ You need [Node.js 14+](https://nodejs.org) and [Alfred 4.6+](https://www.alfreda

This workflow need one of JetBrains products (**2019.1+**), and its [shell script](#init-shell-script) to works

## About issues

It's my daily tool, so I will fix issue that I can reproduce with **my environment**, which is
* macOS 12.3
* Node 14, managed by [Volta](https://volta.sh/)
* Alfred 4 (latest available)

Please check the [troubleshooting guide](doc/troubleshooting.md) first, and other issues.
And please follow the issue template for bug report 🙏

## Installation / Update

```shell
Expand Down

0 comments on commit c086fe8

Please sign in to comment.