-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
alex2276564
committed
Nov 1, 2024
1 parent
ebecd91
commit 2000840
Showing
4 changed files
with
75 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Bug Report | ||
description: Create a report to help us improve | ||
url: https://github.com/alex2276564/LeverLock/issues/new?template=bug_report.yml | ||
- name: Feature Request | ||
description: Suggest an idea for this project | ||
url: https://github.com/alex2276564/LeverLock/issues/new?template=feature_request.yml | ||
- name: Question | ||
description: Ask a question about this project | ||
url: https://github.com/alex2276564/LeverLock/issues/new?template=question.yml | ||
- name: Docmentation | ||
description: Check out the wiki for usage | ||
url: https://github.com/alex2276564/LeverLock/README.md |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Question | ||
description: Ask a question about LeverLock | ||
title: "[Question]: " | ||
labels: ["question"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for your interest in LeverLock! | ||
Before asking a question, please check: | ||
- The existing issues and discussions | ||
- The plugin's documentation | ||
- The configuration guide | ||
|
||
- type: textarea | ||
id: question | ||
attributes: | ||
label: Your Question | ||
description: What would you like to know about LeverLock? | ||
placeholder: Please be as specific as possible | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: category | ||
attributes: | ||
label: Question Category | ||
description: What is your question about? | ||
options: | ||
- "Configuration" | ||
- "Installation" | ||
- "Compatibility" | ||
- "Performance" | ||
- "Features" | ||
- "Permissions" | ||
- "Other" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: minecraft-version | ||
attributes: | ||
label: Minecraft Version | ||
description: What version of Minecraft are you using? | ||
placeholder: "e.g., 1.16.5" | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: Any additional information that might help us answer your question | ||
placeholder: | | ||
- Server setup details | ||
- Related plugins | ||
- Previous attempts to solve the issue | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Confirmation | ||
description: Please confirm the following | ||
options: | ||
- label: "I have searched for similar questions in existing issues" | ||
required: true | ||
- label: "I have read the plugin's documentation" | ||
required: true |