Skip to content

Commit

Permalink
chore: add support form
Browse files Browse the repository at this point in the history
  • Loading branch information
homuler committed Feb 21, 2022
1 parent 39e7e1c commit 61c9244
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/build-install-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,16 @@ body:
attributes:
label: Command Sequences
description: |
List the commands and operations you performed, in order and as best you can.
List the commands and operations you performed, in order and as best you can.\
Be careful to describe what you actually did (e.g. run `export PYTHON_BIN_PATH=...`), not what you wanted to do (e.g. set `PYTHON_BIN_PATH`).
validations:
required: true

- type: textarea
attributes:
label: Log
description: |
Attach full log in _text_ format.\
Attach _full_ log in _text_ format.\
When executing build command, make sure to add `-vv` option (e.g. `python build.py build --desktop cpu -vv`).
It is preferable to include a log of commands executed during installation (e.g. `sudo apt-get install ...`).
Expand Down
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/other-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ body:
value: |
This is a fallback form.
Do not use this form if you are creating an issue about a bug or build.\
If you create an issue using this form even though there is more appropriate one, we may silently close it.
If you cannot find more appropriate form, please use this form.\
For example, you can use it when asking questions about the internal implementation.
* If you don't know how to use MediaPipe itself, please ask it in the official community.
* Check to see if there's a more appropriate [form](https://github.com/homuler/MediaPipeUnityPlugin/issues/new/choose).
* Check to make sure someone hasn't already opened a similar [issue](https://github.com/homuler/MediaPipeUnityPlugin/issues).
- type: textarea
Expand Down
82 changes: 82 additions & 0 deletions .github/ISSUE_TEMPLATE/support.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: Support
description: Request support
labels: ["type:support"]
body:
- type: markdown
attributes:
value: |
This is a support form.
If you're having trouble using the plugin in your project or want to know how to use the plugin, please use this form.
* If you don't know how to use MediaPipe itself, please ask it in the official community.
* Check to see if there's a more appropriate [form](https://github.com/homuler/MediaPipeUnityPlugin/issues/new/choose).
* Check to make sure someone hasn't already opened a similar [issue](https://github.com/homuler/MediaPipeUnityPlugin/issues).
- type: input
id: plugin_version
attributes:
label: Plugin Version or Commit ID
placeholder: v0.8.2
validations:
required: true

- type: input
id: unity_version
attributes:
label: Unity Version
placeholder: 2020.3.29f1
validations:
required: true

- type: input
id: host_os
attributes:
label: Your Host OS
description: OS where UnityEditor runs
placeholder: Ubuntu 20.04, Windows 10 Home, macOS Monterey 12.2
validations:
required: true

- type: dropdown
id: target_platform
attributes:
label: Target Platform
multiple: true
options:
- UnityEditor
- Windows Standalone
- Mac Standalone
- Linux Standalone
- Android
- iOS
- WebGL
validations:
required: true

- type: textarea
id: description
attributes:
label: Description
description: |
Describe the issue so that we can understand what you want to do and what is not working.\
Even if you just want to ask how to use the plugin, make it clear where you know and where you don't know.
validations:
required: true

- type: textarea
id: source_code
attributes:
label: Code to Reproduce the issue
description: |
Provide source code to reporoduce the issue (share the link to your repository if possible).\
Note that we won't support you if we cannot understand your issue by seeing the information given here.
validations:
required: false

- type: textarea
attributes:
label: Additional Context
description: |
Something that does not fit in the above form.\
For example, if you have done your own research on the problem, describe it here.

0 comments on commit 61c9244

Please sign in to comment.