forked from IntellectualSites/FastAsyncWorldEdit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/IntellectualSites/FastAsync…
…WorldEdit into main
- Loading branch information
Showing
115 changed files
with
4,290 additions
and
626 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
daysUntilStale: 60 | ||
daysUntilClose: 7 | ||
only: issues | ||
exemptLabels: | ||
- "Bug" | ||
- "Enhancement" | ||
- "Approved" | ||
- "Priority" | ||
- "Under investigation" | ||
staleLabel: "resolution: stale" | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
closeComment: > | ||
This issue has been automatically closed because it has not had activity in | ||
a long time. If the issue still applies to the most recent supported | ||
version, please open a new issue referencing this original issue. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: "build" | ||
|
||
on: ["pull_request", "push"] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
java: ["1.8", "11"] | ||
os: ["ubuntu-18.04"] | ||
runs-on: "${{ matrix.os }}" | ||
steps: | ||
- name: "Checkout Repository" | ||
uses: "actions/[email protected]" | ||
- name: "Setup JDK ${{ matrix.java }}" | ||
uses: "actions/[email protected]" | ||
with: | ||
java-version: "${{ matrix.java }}" | ||
- name: "Cache Gradle" | ||
uses: "actions/[email protected]" | ||
with: | ||
path: | | ||
"~/.gradle/caches" | ||
"~/.gradle/wrapper" | ||
key: "${{ runner.os }}-${{ matrix.java }}-gradle-${{ hashFiles('**/*.gradle*') }}" | ||
restore-keys: | | ||
"${{ runner.os }}-${{ matrix.java }}-gradle-" | ||
- name: "Cache Local Maven Repository" | ||
uses: "actions/[email protected]" | ||
with: | ||
path: "~/.m2/repository" | ||
key: "${{ runner.os }}-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}" | ||
restore-keys: | | ||
"${{ runner.os }}-${{ matrix.java }}-maven-" | ||
- name: "Cache BuildTools Decompiled Code" | ||
uses: "actions/[email protected]" | ||
with: | ||
path: "$GITHUB_WORKSPACE/work" | ||
key: "${{ runner.os }}-buildtools" | ||
restore-keys: | | ||
"${{ runner.os }}-buildtools" | ||
- name: "Test Enviornment" | ||
run: "echo $GITHUB_WORKSPACE" | ||
- name: "Download BuildTools" | ||
run: "wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar" | ||
- name: "Run BuildTools" | ||
run: "java -jar BuildTools.jar --rev 1.16.4" | ||
- name: "Clean Build" | ||
run: "./gradlew clean build sourcesJar javadocJar" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: "validate gradle wrapper" | ||
|
||
on: ["pull_request", "push"] | ||
|
||
jobs: | ||
build: | ||
runs-on: "ubuntu-18.04" | ||
steps: | ||
- name: "Checkout Repository" | ||
uses: "actions/[email protected]" | ||
- name: "Validate Gradle Wrapper" | ||
uses: "gradle/[email protected]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Write a cool script? You can submit a pull request to [our GitHub Repository](https://github.com/IntellectualSites/FastAsyncWorldEdit). | ||
We will consider your script for inclusion in the FastAsyncWorldEdit repository. CraftScripts in the FastAsyncWorldEdit repository are | ||
licensed under GPLv3, like the rest of FastAsybcWorldEdit. | ||
|
||
You can also post your scripts on [our Discord](https://discord.gg/KxkjDVg) in the `#sharing-is-caring` channel. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.