Skip to content

Commit

Permalink
1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
MelanX committed Jun 22, 2024
1 parent 555d015 commit 68a4684
Show file tree
Hide file tree
Showing 37 changed files with 534 additions and 269 deletions.
15 changes: 8 additions & 7 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
name: Bug Report
description: Report an issue with supported versions of SkyblockUltimaTools
description: Report an issue with supported versions of Skyblock Ultima Tools
labels: [ bug ]
body:
- type: dropdown
id: mc-version
attributes:
label: Minecraft version
options:
- 1.19.4
- 1.20.1
- 1.19.x
- 1.20.x
- 1.21.x
validations:
required: true
- type: input
id: mod-version
attributes:
label: Skyblock Ultima Tools version
placeholder: eg. 1.19.4-3.2.0
placeholder: eg. 1.21-5.0.0
validations:
required: true
- type: input
id: forge-version
attributes:
label: Forge version
placeholder: eg. 41.0.3
label: (Neo)Forge version
placeholder: eg. 21.0.0-beta
validations:
required: true
- type: input
Expand Down Expand Up @@ -53,4 +54,4 @@ body:
id: additional-information
attributes:
label: Other information
description: Any other relevant information that is related to this issue, such as modpacks, other mods and their versions.
description: Any other relevant information that is related to this issue, such as modpacks, other mods and their versions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ body:
label: Describe your idea
placeholder: A clear and reasoned description of your idea.
validations:
required: true
required: true
10 changes: 0 additions & 10 deletions .github/stale.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: publish

on:
push:
branches:
- '**'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 21

- name: Build and publish to maven
uses: gradle/actions/setup-gradle@v3
with:
arguments: clean build publish curseforge modrinth --no-configuration-cache
env:
GIT_COMMIT: ${{ github.sha }}
GIT_PREVIOUS_COMMIT: ${{ github.event.before }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Close stale issues and PRs

on:
schedule:
- cron: '0 */6 * * *'

jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v9
with:
stale-issue-message: The required information were not provided yet. Thus, this was marked as stale.
close-issue-message: None of the required information was ever provided. If this is still an issue, feel free to reopen with the required information, or create a new issue.
only-labels: needs more info
days-before-stale: 7
days-before-close: 3
12 changes: 9 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ build

# other
eclipse
run*
classes
/run*
/logs

.cache
# Files from Forge MDK
forge*changelog.txt
/src/generated/resources/.cache

# CoreMods
*.d.ts
**/tsconfig.json
34 changes: 0 additions & 34 deletions Jenkinsfile

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2020 MelanX
Copyright (c) 2019-2024 MelanX

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Skyblock Ultima Tools
Useful tools for Skyblock modpacks

[![Curseforge](http://cf.way2muchnoise.eu/versions/For%20MC_315068_all.svg)](https://www.curseforge.com/minecraft/mc-mods/skyblock-ultima-tools)
[![CurseForge](http://cf.way2muchnoise.eu/full_315068_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/skyblock-ultima-tools)
[![Curseforge](https://cf.way2muchnoise.eu/versions/For%20MC_315068_all.svg)](https://www.curseforge.com/minecraft/mc-mods/skyblock-ultima-tools)
[![CurseForge](https://cf.way2muchnoise.eu/full_315068_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/skyblock-ultima-tools)

[![Modrinth](https://img.shields.io/modrinth/game-versions/fM4ceeVu?color=00AF5C&label=modrinth&logo=modrinth)](https://modrinth.com/mod/skyblock-ultima-tools)
[![Modrinth](https://img.shields.io/modrinth/dt/fM4ceeVu?color=00AF5C&logo=modrinth)](https://modrinth.com/mod/skyblock-ultima-tools)
Loading

0 comments on commit 68a4684

Please sign in to comment.