-
-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev/feature' into feature/whitelist-api
- Loading branch information
Showing
1,082 changed files
with
19,035 additions
and
6,644 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Archive documentation | ||
|
||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
archive-docs: | ||
if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Configure workflow | ||
id: configuration | ||
run: | | ||
echo "BRANCH_NAME=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT | ||
echo "DOCS_OUTPUT_DIR=${GITHUB_WORKSPACE}/skript-docs/docs/archives/${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | ||
echo "DOCS_REPO_DIR=${GITHUB_WORKSPACE}/skript-docs" >> $GITHUB_OUTPUT | ||
echo "SKRIPT_REPO_DIR=${GITHUB_WORKSPACE}/skript" >> $GITHUB_OUTPUT | ||
- name: Checkout Skript | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
path: skript | ||
- name: Setup documentation environment | ||
uses: ./skript/.github/workflows/docs/setup-docs | ||
with: | ||
docs_deploy_key: ${{ secrets.DOCS_DEPLOY_KEY }} | ||
docs_output_dir: ${{ steps.configuration.outputs.DOCS_OUTPUT_DIR }} | ||
- name: Generate documentation | ||
uses: ./skript/.github/workflows/docs/generate-docs | ||
with: | ||
docs_output_dir: ${{ steps.configuration.outputs.DOCS_OUTPUT_DIR }} | ||
docs_repo_dir: ${{ steps.configuration.outputs.DOCS_REPO_DIR }} | ||
skript_repo_dir: ${{ steps.configuration.outputs.SKRIPT_REPO_DIR }} | ||
is_release: true | ||
generate_javadocs: true | ||
- name: Push archive documentation | ||
uses: ./skript/.github/workflows/docs/push-docs | ||
with: | ||
docs_repo_dir: ${{ steps.configuration.outputs.DOCS_REPO_DIR }} | ||
git_name: Archive Docs Bot | ||
git_email: archivedocs@skriptlang.org | ||
git_commit_message: "Update ${{ steps.configuration.outputs.BRANCH_NAME }} archive docs" |
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,22 @@ | ||
name: When labels are modified, run actions. | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
|
||
jobs: | ||
remove-good-first-issue-label: | ||
if: ${{ github.event.label.name == 'completed' || github.event.label.name == 'PR available'}} | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
github.rest.issues.removeLabel({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
name: ["good first 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Java 17 CI (MC 1.17-1.20.4) | ||
name: Java 17 CI (MC 1.19.4-1.20.4) | ||
|
||
on: | ||
push: | ||
|
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,4 +1,4 @@ | ||
name: JUnit (MC 1.17-1.20.4) | ||
name: JUnit (MC 1.19.4-1.20.4) | ||
|
||
on: | ||
push: | ||
|
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.