diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..927ab38 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +# These owners will be the default owners for everything in the repo. Unless a +# later match takes precedence, they will be requested for review when someone +# opens a pull request. + +* @Midnightific diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..1847342 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +buy_me_a_coffee: midnightific diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..13ea9a4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,39 @@ +--- +name: "🐛 Bug Report" +about: Report a reproducible bug or regression. +title: "Bug: " +labels: "Status: Unconfirmed" +--- + + + +Game version: + +## Steps To Reproduce + +1. +2. + + + +Link to code example: + + + +## The current behavior + +## The expected behavior diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..f19aed5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,20 @@ +# Pull Request Template + +## Why + +- Why are you making this change? +- What problem does it solve? +- What does it improve? + +## What's being changed (if available, include any code snippets, screenshots, or gifs) + +- Give us a description of what you're changing, and why. +- Try and give us as much information as possible so we're all on the same page. + +## Check off the following + +- [ ] I have reviewed my changes in staging and they look good. +- [ ] I have tested my changes in staging and they work as expected. +- [ ] All workflows are passing. +- [ ] I have linked any relevant issues in the description. +- [ ] I have added any necessary documentation (if needed). diff --git a/.github/config.yml b/.github/config.yml new file mode 100644 index 0000000..522003a --- /dev/null +++ b/.github/config.yml @@ -0,0 +1,14 @@ +newIssueWelcomeComment: > + Thanks for opening an issue! Please make sure you have provided the following information so we can help you as best we can: + + - [ ] A descriptive title + - [ ] A descriptive explanation of the problem + - [ ] Steps to reproduce the problem + - [ ] What you expected to happen + - [ ] What actually happened + - [ ] Any other relevant information + + If you have any questions, please feel free to ask them in this issue. + +newPRWelcomeComment: > + Thanks for opening a pull request! Please make sure that you have checked all the boxes and provided all information required!