-
-
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
Showing
4 changed files
with
121 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Bug Report | ||
description: Report an issue to help us improve | ||
labels: [Bug] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before submitting your issue please: | ||
- Check if the **Issues section** has a similar issue. | ||
- Check if the **Wiki section** has an entry about your issue. | ||
- type: input | ||
id: version | ||
attributes: | ||
label: "Version" | ||
description: "'Latest' is not a valid answer, please write the exact version number." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe your issue. | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: log-file | ||
attributes: | ||
label: Latest Log File | ||
description: Upload your log file to [https://pastebin.com](https://pastebin.com) and paste a link to it here. | ||
validations: | ||
required: false | ||
|
||
- type: dropdown | ||
id: modified-script | ||
attributes: | ||
label: "Have you modified the script?" | ||
description: "Have you changed script, changed variables, or similar?" | ||
options: | ||
- 'No' | ||
- 'Yes' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: user-modifications | ||
attributes: | ||
label: User Modifications | ||
description: If you answered "Yes" above, please briefly explain what you have modified. | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: discord-username | ||
attributes: | ||
label: Discord Username | ||
description: If you are in the [KuryKat Modding Community](https://discord.gg/7jBSfARh5f) and wouldn't mind being asked further questions there, leave your username here. | ||
placeholder: username#0000 | ||
validations: | ||
required: false |
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: KuryKat Modding Community | ||
url: https://discord.gg/7jBSfARh5f | ||
about: Join our Discord Server for support, questions & discussion. |
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,27 @@ | ||
name: General Suggestion | ||
description: Suggest a change or addition to the script | ||
labels: [Suggestion] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Before making a suggestion please: | ||
- Check for similar suggestions in the **Issues & Discussions sections**. | ||
- Check the **Wiki section** for entries regarding your suggestion. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe your suggestion | ||
description: What would you like added/changed? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reason | ||
attributes: | ||
label: Why would you like this added/changed? | ||
validations: | ||
required: true |
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,27 @@ | ||
name: 'Support Requests' | ||
|
||
on: | ||
issues: | ||
types: [labeled, unlabeled, reopened] | ||
workflow_call: | ||
|
||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
action: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/support-requests@v2 | ||
with: | ||
github-token: ${{ github.token }} | ||
support-label: 'Support' | ||
issue-comment: > | ||
:wave: @{issue-author}, we use the issue tracker exclusively | ||
for bug reports and feature requests. However, this issue appears | ||
to be a support request. | ||
Please use our [support channel on our Discord](https://discord.gg/7jBSfARh5f) | ||
to get help with the project. | ||
close-issue: true | ||
lock-issue: false |