diff options
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 10 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.yml | 17 | ||||
-rw-r--r-- | .github/workflows/checks.yml | 60 | ||||
-rw-r--r-- | README.md | 7 |
4 files changed, 82 insertions, 12 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index c5be7ab..30af2fe 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -4,7 +4,7 @@ labels: "bug" body: - type: markdown attributes: - value: Before raising an issue, please search for existing issues to avoid creating duplicates. For questions and support please use [Discord](https://polyfrost.cc/discord). + value: Before raising an issue, please search for existing issues to avoid creating duplicates. For questions, please use [Discord](https://polyfrost.cc/chat). - type: textarea id: bug-description attributes: @@ -13,9 +13,6 @@ body: validations: required: true - type: textarea - id: version-data - description: The version data e.g: Minecraft 2.10.2, OneConfig v0.1-alpha, Windows 12, etc. -- type: textarea id: steps-to-reproduce attributes: label: Steps to reproduce @@ -28,11 +25,6 @@ body: label: Expected behavior description: Describe what you should see instead - type: textarea - id: example-repository - attributes: - label: Example repository - description: If possible, please create an [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug and link it here in the bug report -- type: textarea id: anything-else attributes: label: Anything else? diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index b4ed087..4b15111 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,5 +1,20 @@ --- name: Feature request -about: Suggest an idea for OneConfig +about: Suggest an idea for this OneConfig +title: '' +labels: '' +assignees: '' --- + +## Is your feature request related to a problem? Please describe +<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> + +## Describe the behaviour you'd like +<!-- A clear and concise description of what you want to happen. --> + +## Describe alternatives you've considered +<!-- A clear and concise description of any alternative solutions or features you've considered. --> + +## Additional context +<!-- Add any other context or screenshots about the feature request here. --> diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 0000000..7f7499d --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,60 @@ +# Build Workflow + +name: Build + +on: + - pull_request + - workflow_dispatch + - push + +concurrency: + group: ${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }} + cancel-in-progress: true + +jobs: + build: + name: Build + + strategy: + matrix: + version: + - 1.8.9-forge + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Set up JDK 17 + uses: actions/setup-java@v2 + with: + java-version: 17 + distribution: temurin + cache: gradle + + - name: Cache Loom + id: cache + uses: actions/cache@v2 + with: + path: | + ./.gradle/loom-cache + key: ${{ runner.os }}-loom-cache-jdk17-${{ hashFiles('./build.gradle.kts') }} + + - name: Chmod Gradle + run: chmod +x ./gradlew + + - name: Setup Gradle + if: steps.cache.outputs.cache-hit != 'true' + run: ./gradlew setupGradle --no-daemon + + - name: Build + run: ./gradlew build --no-daemon + + - name: Upload Build Artifacts + uses: actions/upload-artifact@v2 + with: + name: ${{ matrix.version }} Artifacts + path: versions/${{ matrix.version }}/build/libs/ @@ -1,5 +1,8 @@ # OneConfig -oneconfig (real) +OneConfig is a next generation config library currently in development for all Minecraft mods. + +For a guide of how to use OneConfig please see our documentation at https://docs.polyfrost.cc + +![image](https://user-images.githubusercontent.com/67508414/172061081-7a32a139-d5c6-4f5a-907a-5af66deb799f.png) -Coming Soon :tm: |