-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
164 additions
and
15 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,45 @@ | ||
name: Bug Report | ||
description: Report an issue you've encountered | ||
labels: [bug] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "## Welcome!" | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking your time to report this bug! | ||
Make sure you are running the latest version before reporting. | ||
- type: input | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: "A clear and concise description of what the bug is." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro | ||
attributes: | ||
label: Steps to reproduce | ||
description: | | ||
How do you trigger this bug? Please walk us through it step by step. | ||
If applicable, add screenshots to help explain your problem. | ||
value: | | ||
1. | ||
2. | ||
3. | ||
... | ||
validations: | ||
required: true | ||
- type: input | ||
id: logs | ||
attributes: | ||
label: Logs | ||
description: | | ||
If applicable (crash, error output in console), please provide your crash report or latest.log | ||
To upload logs, use an external site to post the crash report, such as [Ubuntu Pastebin](https://paste.ubuntu.com/), [Pastebin](http://pastebin.com/), or [Github Gist](https://gist.github.com/) | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: "Add any other context about the problem here, such as the modpack you're playing or other mods that might be causing this bug." |
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,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: GitHub Discussions | ||
url: https://github.com/Sinytra/ConnectorExtras/discussions | ||
about: Please look here for frequently asked questions and questions on how to use Connector Extras. | ||
- name: Discord | ||
url: https://discord.gg/mamk7z3TKZ | ||
about: Join us on our 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,50 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_type: | ||
description: 'The published artifact release type' | ||
required: false | ||
default: 'STABLE' | ||
type: choice | ||
options: | ||
- STABLE | ||
- BETA | ||
- ALPHA | ||
|
||
permissions: | ||
actions: read | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: FabricMC/fabric-action-scripts@v2 | ||
id: changelog | ||
with: | ||
context: changelog | ||
workflow_id: release.yml | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'microsoft' | ||
java-version: '17' | ||
- uses: gradle/wrapper-validation-action@v1 | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
gradle-home-cache-cleanup: true | ||
gradle-home-cache-excludes: | | ||
gradle.properties | ||
- name: Build with Gradle | ||
run: ./gradlew clean build publishMods --stacktrace | ||
env: | ||
PUBLISH_RELEASE_TYPE: ${{ inputs.release_type }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }} | ||
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | ||
CHANGELOG: ${{ steps.changelog.outputs.changelog }} |
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
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