Adds question and feedback issue templates
This commit is contained in:
parent
e7e46ca8e7
commit
d4310d5698
2 changed files with 66 additions and 0 deletions
26
.github/ISSUE_TEMPLATE/feedback.yml
vendored
Normal file
26
.github/ISSUE_TEMPLATE/feedback.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: Feedback
|
||||
description: Leave feedback, related to this list or it's content
|
||||
title: '[FEEDBACK] <title>'
|
||||
labels: ['Feedback']
|
||||
assignees:
|
||||
- lissy93
|
||||
body:
|
||||
|
||||
# Feedback Input
|
||||
- type: textarea
|
||||
id: feedback
|
||||
attributes:
|
||||
label: Feedback
|
||||
validations:
|
||||
required: true
|
||||
|
||||
# Final message
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |-
|
||||
## Thanks 🙏
|
||||
<img align="left" width="160" src="https://i.ibb.co/S5vCnhL/gh-thanks.gif" alt="🐙" />
|
||||
Thank you for your feedback! You should expect a reply within 48 hours.<br>
|
||||
⭐️ Consider dropping the repo a star if you're enjoying Awesome-Privacy.<br>
|
||||
validations:
|
||||
required: false
|
40
.github/ISSUE_TEMPLATE/question.yml
vendored
Normal file
40
.github/ISSUE_TEMPLATE/question.yml
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
name: Question
|
||||
description: Ask a question, related to this list or it's content
|
||||
title: '[QUESTION] <title>'
|
||||
labels: ['Question']
|
||||
assignees:
|
||||
- lissy93
|
||||
body:
|
||||
|
||||
# Question Input
|
||||
- type: textarea
|
||||
id: question
|
||||
attributes:
|
||||
label: Your Question
|
||||
validations:
|
||||
required: true
|
||||
|
||||
# Confirmation checkboxes
|
||||
- type: checkboxes
|
||||
id: idiot-check
|
||||
attributes:
|
||||
label: Please tick the boxes
|
||||
description: Before submitting, please ensure that
|
||||
options:
|
||||
- label: You have filled out this form accurately, and to the best of your knowledge
|
||||
required: true
|
||||
- label: A similar question has not already [been asked](https://github.com/Lissy93/awesome-privacy/issues?q=is%3Aissue) for this software/ service
|
||||
required: true
|
||||
- label: You agree to the [code of conduct](https://github.com/Lissy93/awesome-privacy/blob/master/.github/CODE_OF_CONDUCT.md)
|
||||
required: true
|
||||
|
||||
# Final message
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |-
|
||||
## Thanks 🙏
|
||||
<img align="left" width="160" src="https://i.ibb.co/S5vCnhL/gh-thanks.gif" alt="🐙" />
|
||||
Thank you for your question! You should expect a reply within 48 hours.<br>
|
||||
⭐️ Consider dropping the repo a star if you're enjoying Awesome-Privacy.<br>
|
||||
validations:
|
||||
required: false
|
Loading…
Reference in a new issue