Skip to content

Commit

Permalink
Create Issue Templates
Browse files Browse the repository at this point in the history
  • Loading branch information
KuryKat committed Sep 26, 2023
1 parent d6b1357 commit 3552f24
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
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
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
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.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/suggestion.yml
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
27 changes: 27 additions & 0 deletions .github/workflows/support.yml
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

0 comments on commit 3552f24

Please sign in to comment.