mirror of
https://github.com/maxartz15/template-unity-package.git
synced 2024-11-23 06:25:35 +01:00
Minimalize template.
This commit is contained in:
parent
c9438c27fa
commit
2740171c8f
12
.github/FUNDING.yml
vendored
12
.github/FUNDING.yml
vendored
@ -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']
|
43
.github/ISSUE_TEMPLATE/bug_report.md
vendored
43
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -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]
|
||||
|
20
.github/ISSUE_TEMPLATE/documentation-template.md
vendored
20
.github/ISSUE_TEMPLATE/documentation-template.md
vendored
@ -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
|
28
.github/ISSUE_TEMPLATE/feature_request.md
vendored
28
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -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.
|
20
.github/ISSUE_TEMPLATE/research_template.md
vendored
20
.github/ISSUE_TEMPLATE/research_template.md
vendored
@ -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.
|
66
.github/workflows/documentation.yml
vendored
66
.github/workflows/documentation.yml
vendored
@ -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
|
19
.github/workflows/mirror.yml
vendored
19
.github/workflows/mirror.yml
vendored
@ -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 }}
|
Loading…
Reference in New Issue
Block a user