From 331315261414027265176b44d005a18596ad98f6 Mon Sep 17 00:00:00 2001 From: CoPokBl <59753822+CoPokBl@users.noreply.github.com> Date: Fri, 21 Jun 2024 10:03:26 +1000 Subject: [PATCH 1/3] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 34 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 14 ++++++++++ 2 files changed, 48 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..0f1d9c5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,34 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[BUG] Exception when running /h" +labels: bug +assignees: '' + +--- + +**Checklist (Complete these before creating an issue)** +- [ ] I am running the latest build of EsTools ([Download here](https://ci.serble.net/job/EsTools/lastStableBuild/) +- [ ] I checked that this issue has not already been reported + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Run the command /'...' +2. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. Just type `No error` if the bug is an exception. + +**Stacktraces** +If applicable, add any errors that occurred here. + +**Platform (please complete the following information):** + - Minecraft Version: [e.g. 1.20.6] + - Java Version: [e.g. 8] + - Vault Enabled: [e.g. Yes] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..0fe91c7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,14 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[FEAT] Add /party command" +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. From 880fd61eb3cc2de84f0bcdb2caf1e8398d16c7e9 Mon Sep 17 00:00:00 2001 From: CoPokBl <59753822+CoPokBl@users.noreply.github.com> Date: Fri, 21 Jun 2024 10:27:47 +1000 Subject: [PATCH 2/3] Update CONTRIBUTING.md --- CONTRIBUTING.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ba8503c..d37f16c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,2 +1,3 @@ -If you want to contribute to this project please feel free to fill out a pull request. I don't have a strict template or anything for the request -but just try to be very clear about what you changed and why it is good for the project. +If you want to contribute to this project please feel free to fill out a pull request. I don't have a strict template or anything for the request, but just try to be very clear about what you changed and why it is good for the project. + +If you found a bug or want to request a feature feel free to fill out an issue from one of our issue templates. From 5a83b891c72c37799f4412215aa129218b54a298 Mon Sep 17 00:00:00 2001 From: CoPokBl <59753822+CoPokBl@users.noreply.github.com> Date: Fri, 21 Jun 2024 21:52:20 +1000 Subject: [PATCH 3/3] Remove GitHub workflow in favour of Jenkins https://ci.serble.net --- .github/workflows/maven.yml | 40 ------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml deleted file mode 100644 index ac4595c..0000000 --- a/.github/workflows/maven.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven - -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -name: Java CI with Maven - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: '17' - distribution: 'temurin' - - name: Build with Maven - run: mvn -B package --file pom.xml - - # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive - - name: Update dependency graph - uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 - - - name: Upload JAR - uses: actions/upload-artifact@v2 - with: - name: EsTools.jar - path: ${{ github.workspace }}/target/EsTools-*.jar