mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-25 00:20:57 -05:00
meta: add issue forms (#414)
This commit is contained in:
parent
e40420b7e9
commit
28c07e7046
2 changed files with 107 additions and 0 deletions
66
.github/ISSUE_TEMPLATE/bug.yaml
vendored
Normal file
66
.github/ISSUE_TEMPLATE/bug.yaml
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
name: Bug report
|
||||
description: File a bug report
|
||||
title: "[Bug Report]"
|
||||
labels: ["bug"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for taking the time to fill out this bug report!
|
||||
- type: textarea
|
||||
id: what-happened
|
||||
attributes:
|
||||
label: What happened?
|
||||
description: What did you expect to happen?
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: branch
|
||||
attributes:
|
||||
label: Branch
|
||||
description: What branch of Revolt are you using?
|
||||
options:
|
||||
- Production (app.revolt.chat)
|
||||
- Nightly (nightly.revolt.chat)
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: commit-hash
|
||||
attributes:
|
||||
label: Commit hash
|
||||
description: What is your commit hash? You can find this at the bottom of Settings, next to the branch name.
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: browsers
|
||||
attributes:
|
||||
label: What browsers are you seeing the problem on?
|
||||
multiple: true
|
||||
options:
|
||||
- Firefox
|
||||
- Chrome
|
||||
- Safari
|
||||
- Microsoft Edge
|
||||
- Other (please specify in the "What happened" form)
|
||||
- type: textarea
|
||||
id: logs
|
||||
attributes:
|
||||
label: Relevant log output
|
||||
description: Please copy and paste any relevant log output. (To get this, press `CTRL`- or `CMD`-`SHIFT`-`I` and navigate to the "Console" tab.)
|
||||
render: shell
|
||||
- type: checkboxes
|
||||
id: desktop
|
||||
attributes:
|
||||
label: Desktop
|
||||
description: Is this bug specific to [the desktop client](https://gihtub.com/revoltchat/desktop)? (If not, leave this unchecked.)
|
||||
options:
|
||||
- label: Yes, this bug is specific to Revolt Desktop and is *not* an issue with Revolt Desktop itself.
|
||||
required: false
|
||||
- type: checkboxes
|
||||
id: pwa
|
||||
attributes:
|
||||
label: PWA
|
||||
description: Is this bug specific to the PWA (i.e. "installing" the web app on iOS or Android)? (If not, leave this unchecked.)
|
||||
options:
|
||||
- label: Yes, this bug is specific to the PWA.
|
||||
required: false
|
41
.github/ISSUE_TEMPLATE/feature.yaml
vendored
Normal file
41
.github/ISSUE_TEMPLATE/feature.yaml
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
name: Feature request
|
||||
description: Make a feature request
|
||||
title: "[Feature Request]"
|
||||
labels: ["enhancement"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Before you start, a lot of bigger features may be better suited as [API issues](https://github.com/revoltchat/delta/issues/new) or [centralised discussions](https://github.com/revoltchat/revolt/discussions/new).
|
||||
- type: textarea
|
||||
id: your-idea
|
||||
attributes:
|
||||
label: What do you want to see?
|
||||
description: Describe your idea in as much detail as possible - if applicable, screenshots/mockups are really useful.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: commit-hash
|
||||
attributes:
|
||||
label: Commit hash
|
||||
description: What is your commit hash? You can find this at the bottom of Settings, next to the branch name.
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: branch
|
||||
attributes:
|
||||
label: Branch
|
||||
description: What branch of Revolt are you using? (It's possible the feature you're asking for is already available on Nightly.)
|
||||
options:
|
||||
- Production (app.revolt.chat)
|
||||
- Nightly (nightly.revolt.chat)
|
||||
validations:
|
||||
required: true
|
||||
- type: checkboxes
|
||||
id: pwa
|
||||
attributes:
|
||||
label: PWA
|
||||
description: Is this feature request specific to the PWA (i.e. "installing" the web app on iOS or Android)? (If not, leave this unchecked.)
|
||||
options:
|
||||
- label: Yes, this feature request is specific to the PWA.
|
||||
required: false
|
Loading…
Reference in a new issue