-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/TheBusyBiscuit/Slimefun4
into stable
- Loading branch information
Showing
1,403 changed files
with
158,558 additions
and
54,639 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
## Description | ||
<!-- Please explain your changes --> | ||
<!-- Please explain your changes in detail. --> | ||
|
||
## Changes | ||
<!-- Please list all the changes you have made --> | ||
<!-- Please list all the changes you have made. --> | ||
|
||
## Related Issues | ||
<!-- Please tag any Issues related to your Pull Request --> | ||
<!-- Syntax: "Resolves #000" --> | ||
|
||
## Testability | ||
<!-- Check the boxes below if - and only if - you tested your changes thoroughly --> | ||
## Checklist | ||
<!-- After posting your issue, please check the boxes below if they apply --> | ||
- [ ] I have fully tested the proposed changes and promise that they will not break everything into chaos. | ||
- [ ] I have also tested the proposed changes in combination with various popular addons and can confirm my changes do not break them. | ||
- [ ] I followed the existing code standards and didn't mess up the formatting. | ||
- [ ] I did my best to add documentation to any public classes or methods I added. |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,19 +1,22 @@ | ||
name: Changelog Populator | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'CHANGELOG.md' | ||
|
||
jobs: | ||
populate: | ||
name: TOC Generator | ||
name: Changelog Generator | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: TOC Generator | ||
uses: technote-space/toc-generator@v2 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
TARGET_PATHS: 'CHANGELOG.md' | ||
TOC_TITLE: '**List of Releases**' | ||
TOC_TITLE: '' | ||
COMMIT_MESSAGE: '[CI skip] Updated Changelog' | ||
COMMIT_NAME: 'TheBusyBot' |
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,34 @@ | ||
name: Close invalid Issue | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
comment: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.issue.labels.*.name, 'Bug Report') == false | ||
steps: | ||
- name: Close Issue | ||
uses: maxkomarychev/octions/octions/issues/update@master | ||
with: | ||
token: ${{ secrets.ACCESS_TOKEN }} | ||
issue_number: ${{ github.event.issue.number }} | ||
state: closed | ||
- name: Add invalid label | ||
uses: maxkomarychev/octions/octions/issues/add-labels@master | ||
with: | ||
token: ${{ secrets.ACCESS_TOKEN }} | ||
issue_number: ${{ github.event.issue.number }} | ||
labels: 'invalid' | ||
- name: Create a comment | ||
uses: maxkomarychev/octions/octions/issues/create-comment@master | ||
with: | ||
token: ${{ secrets.ACCESS_TOKEN }} | ||
issue_number: ${{ github.event.issue.number }} | ||
body: |- | ||
Your issue seems to be missing our template. | ||
[Click here to create a bug report](https://github.com/TheBusyBiscuit/Slimefun4/issues/new/choose) | ||
Please remember that this Bug Tracker is exclusively reserved for Bug reports, any other form | ||
of discussion, like suggestions or questions should be posted on our discord server (You can find a link [on our main page](https://github.com/TheBusyBiscuit/Slimefun4#discord)). |
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,34 @@ | ||
name: Javadocs Generator | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'src/main/java/**.java' | ||
|
||
jobs: | ||
javadocs: | ||
|
||
runs-on: ubuntu-latest | ||
if: contains(github.event.head_commit.message, '[javadocs]') | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v1 | ||
- name: Set up JDK 1.9 | ||
uses: giltene/setup-java@master | ||
with: | ||
java-version: 9.0.4 | ||
- name: Generate Javadocs | ||
run: mvn javadoc:javadoc | ||
- name: Push to repository | ||
uses: github-actions-x/commit@v2.5 | ||
with: | ||
github-token: ${{ secrets.ACCESS_TOKEN }} | ||
push-branch: 'master' | ||
commit-message: '[CI skip] Updated Javadocs' | ||
force-add: 'true' | ||
files: docs | ||
name: TheBusyBot | ||
email: ${{ secrets.BOT_EMAIL }} |
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 |
---|---|---|
|
@@ -5,4 +5,6 @@ | |
*.iml | ||
/target | ||
/.idea/ | ||
dependency-reduced-pom.xml | ||
dependency-reduced-pom.xml | ||
javadoc.xml | ||
.DS_Store |
Oops, something went wrong.