diff --git a/Packages/src/.github/FUNDING.yml b/Packages/src/.github/FUNDING.yml deleted file mode 100644 index b8d0037..0000000 --- a/Packages/src/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: mob-sakai # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: mob_sakai # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/Packages/src/.github/ISSUE_TEMPLATE/bug_report.md b/Packages/src/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 9a2de65..0000000 --- a/Packages/src/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: bug -assignees: mob-sakai - ---- - -NOTE: Your issue may already be reported! Please search on the [issue tracker](../) before creating one. - -**Describe the bug** - -A clear and concise description of what the bug is. - -**To Reproduce** - -Steps to reproduce the behavior: - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** - -A clear and concise description of what you expected to happen. - -**Screenshots** - -If applicable, add screenshots to help explain your problem. - -**Environment (please complete the following)** - -- Package version [e.g. 4.2.0, 3.3.14] -- Platform: [e.g. Editor(Windows/Mac), Standalone(Windows/Mac), iOS, Android, WebGL] -- Unity version: [e.g. 2021.3.7f1] -- Project options: [e.g. Mono/IL2CPP, .Net Standard 2.1/.Net 4.x, URP/HDRP, GraphicAPIs] - -**Additional context** - -Please add any other context about the issue here. -It will help us resolve the issue. - -- Error messages and crash dump -- Screenshots, gif animations and movie files -- Reproducible minimal project - - The entire project (zipped Assets, Packages, ProjectSettings) is preferred over `.unitypackage` diff --git a/Packages/src/.github/ISSUE_TEMPLATE/feature_request.md b/Packages/src/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 8116ebe..0000000 --- a/Packages/src/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: mob-sakai - ---- - -NOTE: Your issue may already be reported! Please search on the [issue tracker](../) before creating one. - -**Is your feature request related to a problem? Please describe.** - -A clear and concise description of what the issue is. (e.g. I'm always frustrated when [...]) - -**Describe the solution 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/Packages/src/.github/ISSUE_TEMPLATE/question.md b/Packages/src/.github/ISSUE_TEMPLATE/question.md deleted file mode 100644 index 8fa7151..0000000 --- a/Packages/src/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -name: Question -about: Ask a question about this project -title: '' -labels: question -assignees: mob-sakai - ---- - -NOTE: Your issue may already be reported! Please search on the [issue tracker](../) before creating one. - -**Describe what help do you need** -A description of the question. - -**Additional context** -Add any other context or screenshots about the question here. diff --git a/Packages/src/.github/workflows/release.yml b/Packages/src/.github/workflows/release.yml deleted file mode 100644 index 8dbc71c..0000000 --- a/Packages/src/.github/workflows/release.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: release - -on: - push: - branches: - - preview - - main - - v*.x - tags-ignore: - - "**" - -jobs: - release: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - uses: cycjimmy/semantic-release-action@v3 - with: - extra_plugins: | - @semantic-release/changelog - @semantic-release/git - env: - GITHUB_TOKEN: ${{ github.token }} diff --git a/Packages/src/.github/workflows/test.yml b/Packages/src/.github/workflows/test.yml deleted file mode 100644 index a0e79fd..0000000 --- a/Packages/src/.github/workflows/test.yml +++ /dev/null @@ -1,69 +0,0 @@ -# Secrets -# UNITY_LICENSE: -name: test - -on: - push: - branches: - - develop - tags: - - "!*" - pull_request: - types: - - opened - - synchronize - -jobs: - setup: - runs-on: ubuntu-latest - outputs: - versions: ${{ steps.setup.outputs.versions }} - steps: - - id: setup - run: | - VERSIONS=`npx unity-changeset list --versions --all --latest-patch --min 2018.3 --json` - echo "==== Target Unity Versions ====" - echo "${VERSIONS}" - echo "::set-output name=versions::${VERSIONS}" - - test: - runs-on: ubuntu-latest - needs: setup - strategy: - fail-fast: false - matrix: - version: ${{ fromJson(needs.setup.outputs.versions) }} - - steps: - # Checkout sandbox project - - uses: actions/checkout@v3 - with: - ref: sandbox - submodules: true - fetch-depth: 0 - - # Update package submodule - - name: "Update package submodule" - working-directory: Packages/dev - run: git checkout ${{ github.sha }} - - # Cache - - uses: actions/cache@v3 - with: - path: Library - key: Library-${{ matrix.version }}-${{ github.sha }} - restore-keys: | - Library-${{ matrix.version }}- - Library- - - # Run tests - - name: "Run tests" - uses: game-ci/unity-test-runner@v2 - with: - customImage: mobsakai/unity3d:${{ matrix.version }} - customParameters: -nographics - # unityVersion: ${{ matrix.version }} - checkName: ${{ matrix.version }} Test Results - githubToken: ${{ github.token }} - env: - UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}