diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml deleted file mode 100644 index f2d9a6e..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Bug Report -title: "[BUG] " -description: Report a problem you're having -body: - - type: markdown - attributes: - value: | - ### **Preliminary instructions** - - Before opening an issue, please [check the Wiki first](https://github.com/pizzaboxer/bloxstrap/wiki/) to see if your problem has been addressed there. - - If it isn't, please confirm which pages that you read that were relevant to your issue. - - If your problem is with Roblox itself (i.e. it crashes or doesn't launch), [check to see if it happens without Bloxstrap](https://github.com/pizzaboxer/bloxstrap/wiki/Roblox-crashes-or-does-not-launch). - - Please only open an issue if your problem happens only with Bloxstrap, and state clearly that this is the case, as anything else is out of my control. - - If you are getting a Bloxstrap Exception error, please attach a copy of the provided log file. There is a button on the dialog that locates it for you. - - If more clarification on the issue is needed, and you don't respond after a month, then your issue will be closed as stale. - - type: checkboxes - id: terms - attributes: - label: Acknowledgement of preliminary instructions - options: - - label: I have read the preliminary instructions, and I am certain that my problem has not already been addressed. - required: true - - label: My answer given in the checkbox above is a lie. - - type: textarea - id: what-happened - attributes: - label: What problem did you encounter? - description: Provide a comprehensive description of the problem you're facing. Don't forget to attach any additional resources you may have, such as log files and screenshots. - validations: - required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml deleted file mode 100644 index b9c53b9..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: Feature Request -title: "[REQ] " -description: Suggest a feature that should be added -body: - - type: markdown - attributes: - value: | - ### **Preliminary instructions** - - Please first check to see if your idea has already been suggested. You can check by [searching all previous issues](https://github.com/pizzaboxer/bloxstrap/issues?q=is%3Aissue). - - If your feature suggestion is to do with Roblox itself, please consider that what's possible is heavily constrained by what [FastFlags](https://github.com/pizzaboxer/bloxstrap/wiki/A-guide-to-FastFlags) are available. - - Don't ask for support on Linux or Mac. That's not happening anytime soon, sorry. - - type: checkboxes - id: terms - attributes: - label: Acknowledgement of preliminary instructions - options: - - label: I have read and acknowledged the preliminary instructions. - required: true - - type: textarea - id: what-happened - attributes: - label: What idea do you have? - description: Provide a comprehensive description of what you think can be improved! - validations: - required: true diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 44fbb83..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,14 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" - - package-ecosystem: "nuget" - directory: "/" - schedule: - interval: "daily" - - package-ecosystem: "gitsubmodule" - directory: "/" - schedule: - interval: "daily" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 9438a2a..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,59 +0,0 @@ -name: CI -on: [push, pull_request] - -jobs: - build: - strategy: - matrix: - configuration: [Debug, Release] - - runs-on: windows-latest - - steps: - - uses: actions/checkout@v4 - with: - submodules: true - - - uses: actions/setup-dotnet@v4 - with: - dotnet-version: '6.0.x' - - - name: Restore dependencies - run: dotnet restore - - - name: Build - run: dotnet build --no-restore - - - name: Publish - run: dotnet publish -p:PublishSingleFile=true -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c ${{ matrix.configuration }} --self-contained false .\Bloxstrap\Bloxstrap.csproj - - - name: Upload Artifact - uses: actions/upload-artifact@v4 - with: - name: Bloxstrap (${{ matrix.configuration }}) - path: | - .\Bloxstrap\bin\${{ matrix.configuration }}\net6.0-windows\win-x64\publish\* - - release: - needs: build - runs-on: ubuntu-latest - if: startsWith(github.ref, 'refs/tags/v') - - steps: - - name: Download x64 release artifact - uses: actions/download-artifact@v4 - with: - name: Bloxstrap (Release) - path: x64 - - - name: Rename binaries - run: | - mv x64/Bloxstrap.exe Bloxstrap-${{ github.ref_name }}.exe - - - name: Release - uses: softprops/action-gh-release@v2 - with: - draft: true - files: | - Bloxstrap-${{ github.ref_name }}.exe - name: Bloxstrap ${{ github.ref_name }}