diff options
| author | CrafterPika <48294025+CrafterPika@users.noreply.github.com> | 2022-01-20 22:49:37 +0100 |
|---|---|---|
| committer | CrafterPika <48294025+CrafterPika@users.noreply.github.com> | 2022-01-20 22:49:37 +0100 |
| commit | 7833fd994650b333350430b5226016d3a51be397 (patch) | |
| tree | b4b2f11c78c0bc04464139406448609d82f09537 /.github | |
| parent | 5d12938fbf9dce4127edb16afa7378888a9692a9 (diff) | |
| download | BedrockConnect-7833fd994650b333350430b5226016d3a51be397.tar.gz BedrockConnect-7833fd994650b333350430b5226016d3a51be397.tar.bz2 BedrockConnect-7833fd994650b333350430b5226016d3a51be397.zip | |
Add some issue templates and fix some wording
Diffstat (limited to '.github')
| -rw-r--r-- | .github/FUNDING.yml | 2 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 63 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 11 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 20 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
5 files changed, 98 insertions, 6 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..4bf25dd --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +# paypal +custom: ['https://paypal.me/Pugmatt']
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..2f8dd6e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,63 @@ +name: Bug report +description: Create a report to help us improve BedrockConnect. +body: +- type: markdown + attributes: + value: | + Hey there, first of all thanks for filling out this report. + + Before opening any issues: + - First ensure that there is no similiar issue on the [issue tracker](https://github.com/Pugmatt/BedrockConnect/issues). + - Second that the issue you are having is either not mentioned on the [Troubleshooting](https://github.com/Pugmatt/BedrockConnect/wiki/Troubleshooting) or if it is mentioned there you have atleast tried the fix. + + Optinally it is also recommended to host your own Local BedrockInstance as they may be more reliable, you can find the [Windows](https://www.youtube.com/watch?v=AW5X7-qnvLk) or [Linux](https://github.com/Pugmatt/BedrockConnect/wiki/Setting-up-on-Linux) tutorials here. +- type: textarea + attributes: + label: What happened? + description: A clear and detailed description of the issue/bug that occurred. + validations: + required: true +- type: textarea + attributes: + label: Excepted Behaviour? + description: A clear and detailed description of the behaviour you excepted to happen. + validations: + required: true +- type: textarea + attributes: + label: Steps to reproduce. + description: If applicable, provide some steps to reproduce this issue. + placeholder: | + 1. Open [...] + 2. Choose [...] + 3. See error. + validations: + required: false +- type: textarea + attributes: + label: Screenshots/Video's + description: If possible, provide some Video/Screenshot of the issue, to help explain the issue better. + validations: + required: false +- type: input + attributes: + label: Minecraft Bedrock Version + description: What version of Minecraft Bedrock are you using? + placeholder: | + Example: 1.18.2 + validations: + required: true +- type: input + attributes: + label: Console + description: What console are you using? + placeholder: | + Example: Nintendo Switch + validations: + required: true +- type: textarea + attributes: + label: Additional Context + description: Add any additional context about the issue here. + validations: + required: false
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..209bd55 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +blank_issues_enabled: false +contact_links: + - name: Troubleshooting + url: https://github.com/Pugmatt/BedrockConnect/wiki/Troubleshooting + about: A set of common issues that can occur, and how to fix them. + - name: Hosting you're own BedrockConnect Instance (Linux) + url: https://github.com/Pugmatt/BedrockConnect/wiki/Setting-up-on-Linux + about: Setup an BedrockConnect instance on you're Linux Computer + - name: Hosting you're own BedrockConnect Instance (Windows) + url: https://www.youtube.com/watch?v=AW5X7-qnvLk + about: Setup an BedrockConnect instance on you're Windows Computer
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..6da28f4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and detailed description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and detailed description of what you want to happen. + +**Describe alternatives you've considered** +A clear and detailed description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here.
\ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56ca9c3..33b34d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,6 @@ name: buildroot -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [push, pull_request] jobs: build: @@ -19,7 +15,7 @@ jobs: java-version: '11' distribution: 'adopt' cache: maven - - name: Building BedrockConnect + - name: Build with maven run: | cd serverlist-server mvn -B package --file pom.xml |
