From 2740171c8f80f0e3637bd0823092fd3d61e6355b Mon Sep 17 00:00:00 2001 From: max Date: Tue, 1 Sep 2020 17:18:15 +0200 Subject: [PATCH] Minimalize template. --- .github/FUNDING.yml | 12 ---- .github/ISSUE_TEMPLATE/bug_report.md | 43 ------------ .../ISSUE_TEMPLATE/documentation-template.md | 20 ------ .github/ISSUE_TEMPLATE/feature_request.md | 28 -------- .github/ISSUE_TEMPLATE/research_template.md | 20 ------ .github/workflows/documentation.yml | 66 ------------------- .github/workflows/mirror.yml | 19 ------ README.md | 5 +- 8 files changed, 3 insertions(+), 210 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/documentation-template.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 .github/ISSUE_TEMPLATE/research_template.md delete mode 100644 .github/workflows/documentation.yml delete mode 100644 .github/workflows/mirror.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index cd05f7f..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: omiyagames -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/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index c710291..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG] " -labels: bug, needs-priority -assignees: '' - ---- - -### 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. - -#### Actual behavior - -A clear and concise description of what actually happened. - -### Additional context - -Add any other context about the problem here. - -#### Screenshots - -If applicable, add screenshots to help explain your problem. - -#### Desktop (please complete the following information): - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - diff --git a/.github/ISSUE_TEMPLATE/documentation-template.md b/.github/ISSUE_TEMPLATE/documentation-template.md deleted file mode 100644 index 590791f..0000000 --- a/.github/ISSUE_TEMPLATE/documentation-template.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Documentation template -about: Indicate what needs clarification on this project -title: "[DOC] " -labels: documentation, needs-priority -assignees: '' - ---- - -### Is your request related to a feature? Please describe. - -A clear and concise description of what needs documentation. - -### Describe what changes in documentation you'd like. - -A clear and concise description of what you want to happen. - -### Tasklist - -* [ ] Task #1 diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 577fc20..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "[FEATURE] " -labels: enhancement, needs-priority -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 solution you'd like - -A clear and concise description of what you want to happen. - -#### Tasklist - -* [ ] Task #1 - -### 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/ISSUE_TEMPLATE/research_template.md b/.github/ISSUE_TEMPLATE/research_template.md deleted file mode 100644 index ef73ce0..0000000 --- a/.github/ISSUE_TEMPLATE/research_template.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Research template -about: A note to the assignee on what to look into before starting a task. Intended for large projects, and estimating their effort. -title: "[RESEARCH] " -labels: question, needs-priority -assignees: '' - ---- - -### Is your request related to a feature? Please describe. - -A clear and concise description of what needs research. - -### Describe what to research into - -A clear and concise description of what you want to happen. - -### Additional context - -Add any other context or screenshots about the feature request here. diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml deleted file mode 100644 index 4d2c52a..0000000 --- a/.github/workflows/documentation.yml +++ /dev/null @@ -1,66 +0,0 @@ -name: Host DocFX Documentation - -on: - push: - branches: - - master - -jobs: - # Build the documentation - build: - if: # Adding if-statement to prevent this job from running on packages using this template. - # If you want to run this documentation job, just take out the if-field and value below. - github.repository == 'OmiyaGames/template-unity-package' - runs-on: windows-latest # Required by DocFX - steps: - - name: Checkout - uses: actions/checkout@v2 - # with: - # submodules: true - - - name: Install DocFX - run: choco install -y docfx - - # Taro Omiya here, want to copy a different file instead of README - - name: Build - run: | - cp CHANGELOG.md Documentation~/manual/changelog.md - docfx Documentation~/docfx.json - # Below is the original instructions by Erwan Normand - # - name: Build - # run: | - # cp README.md Documentation~/index.md - # docfx Documentation~/docfx.json - - # Upload the generated documentation - - name: Upload site artifact - uses: actions/upload-artifact@v1 - with: - name: _site - path: _site # Must equals the 'build.dest' value on your docfx.json - - # Deploy the generated documentation to the gh-pages branch - deploy: - needs: build - if: # Adding if-statement to prevent this job from running on packages using this template. - # If you want to run this documentation job, just take out the if-field and value below. - github.repository == 'OmiyaGames/template-unity-package' - runs-on: ubuntu-latest # Required by 'JamesIves/github-pages-deploy-action' - steps: - - name: Checkout - uses: actions/checkout@v2 - # with: - # submodules: true - - # Download the generated documentation - - name: Download site artifact - uses: actions/download-artifact@v1 - with: - name: _site - - - name: Deploy - uses: JamesIves/github-pages-deploy-action@releases/v3 - with: - ACCESS_TOKEN: ${{ secrets.AccessToken }} # You need some setup, see https://github.com/JamesIves/github-pages-deploy-action - BRANCH: gh-pages - FOLDER: _site \ No newline at end of file diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml deleted file mode 100644 index a785496..0000000 --- a/.github/workflows/mirror.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Mirroring - -on: [push, delete] - -jobs: - to_bitbucket: - if: # Adding if-statement to prevent this job from running on packages using this template. - # If you want to run this mirror job, just take out the if-field and value below. - github.repository == 'OmiyaGames/template-unity-package' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: pixta-dev/repository-mirroring-action@v1 - with: - target_repo_url: # Enter the SSH URL to mirror the Github repo to. - git@bitbucket.org:OmiyaGames/template-unity-package.git - ssh_private_key: # Add a secret in Github with the name, SSH_PRIVATE_KEY. - # Don't forget to add a deploy (aka public) key in both the original and mirror repositories. - ${{ secrets.SSH_PRIVATE_KEY }} diff --git a/README.md b/README.md index 3b484b0..f59b1ad 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,11 @@ -# [Maxartz15](https://www.maxartz15.com/) - Template Unity Package +# [COMPANYNAME]() - PACKAGENAME Description. ## Install -Install information. +[Installing from a Git URL](https://docs.unity3d.com/Manual/upm-ui-giturl.html) +[Unitypackage](/releases) ## LICENSE