Initial commit
Build main / build (21) (push) Failing after 13m38s

This commit is contained in:
Laura
2026-08-09 15:17:12 +02:00
commit 6bf2a93935
285 changed files with 32332 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
name: "🔥 Bug report"
description: Create a report to help us improve
labels: [ "status: needs testing", "type: bug" ]
body:
- type: markdown
attributes:
value: |
**Before You Start:**
This form is for submitting bug reports. If you have a usage question
or are unsure if this is really a bug, make sure to:
- Ask on our [Discord Chat](https://discord.com/invite/rduPF3yk62)
Also try to search for your issue - it may have already been answered or even fixed in a development branch.
However, if you find that an old, closed issue still persists in the latest version,
you should open a new issue using the form below instead of commenting on the old issue.
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce
description: |
What do we need to do in order to make the bug happen? Clear and concise reproduction instructions are important for us to be able to triage your issue in a timely manner.
placeholder: Steps to reproduce
validations:
required: true
- type: textarea
id: expected
attributes:
label: What is expected?
validations:
required: true
- type: textarea
id: actually-happening
attributes:
label: What is actually happening?
validations:
required: true
- type: textarea
id: server-info
attributes:
label: Server Info
description: "Minecraft version: (e.g. 1.21.4), Server version (e.g. Spigot, Paper), Plugin version (e.g. 2.17.1)"
render: shell
placeholder: "Minecraft version 1.21.4 on the server version Paper-386 with the Plugin version 2.17.1"
validations:
required: true
- type: textarea
id: additional-comments
attributes:
label: Any additional comments?
description: For example some background / context of how you ran into this bug.
+5
View File
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: 🗣️ Discord Chat
url: https://discord.com/invite/rduPF3yk62
about: Support Discord, please ask questions and seek support here.
@@ -0,0 +1,26 @@
name: "✨ New feature request"
description: Suggest an idea for this project
labels: [ "type: feature" ]
body:
- type: markdown
attributes:
value: |
**Before You Start:**
This form is only for submitting feature requests. If you have a usage question
or are unsure if this is really a bug, make sure to:
- Ask on our [Discord Chat](https://discord.com/invite/rduPF3yk62)
Also try to search for your issue - another user may have already requested something similar!
- type: textarea
id: problem-description
attributes:
label: What problem does this feature solve?
description: |
Explain your use case, context, and rationale behind this feature request. More importantly, what is the **end user experience** you are trying to build that led to the need for this feature?
placeholder: Problem description
validations:
required: true
Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

+21
View File
@@ -0,0 +1,21 @@
{
"extends": [
"config:base",
":disableDependencyDashboard"
],
"automerge": true,
"ignoreDeps": [
"org.spigotmc:spigot-api"
],
"labels": [
"renovate"
],
"commitMessagePrefix": "chore: ",
"rebaseWhen": "conflicted",
"packageRules": [
{
"matchPackagePrefixes": ["software.amazon.awssdk"],
"schedule": ["before 4am on the first day of the month"]
}
]
}
+27
View File
@@ -0,0 +1,27 @@
name: Build main
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 21 ]
fail-fast: true
steps:
- name: Checkout Git Repository
uses: actions/checkout@v5
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
- name: Build with Gradle
run: ./gradlew clean build
+51
View File
@@ -0,0 +1,51 @@
name: Publish to Sonatype
on:
push:
branches: [ master, dev/v3 ]
jobs:
publish:
if: github.repository_owner_id == 29168243
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 21 ]
fail-fast: true
steps:
- name: Checkout Git Repository
uses: actions/checkout@v5
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
- name: Get Project Version
id: version
run: |
VERSION=$(./gradlew -q properties --no-daemon | grep "^version:" | awk '{print $2}')
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
- name: Publish to Sonatype
env:
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }}
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }}
ORG_GRADLE_PROJECT_signingKeyId: ${{ secrets.SIGNING_KEY_ID }}
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }}
run: |
PROJECT_VERSION="${{ steps.version.outputs.version }}"
echo "Detected project version: $PROJECT_VERSION"
if [[ "$PROJECT_VERSION" == *-SNAPSHOT ]]; then
echo "Publishing SNAPSHOT version to Sonatype..."
./gradlew publishAllPublicationsToSonatypeRepository --no-daemon --no-configuration-cache
else
echo "Publishing RELEASE version to Sonatype and closing staging repository..."
./gradlew publishAllPublicationsToSonatypeRepository closeAndReleaseSonatypeStagingRepository --no-daemon --no-configuration-cache
fi