Skip to content

Commit 14d819b

Browse files
committed
Initial commit
0 parents  commit 14d819b

30 files changed

+1255
-0
lines changed

.github/pull_request_template.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## Purpose of this PR
2+
<!-- Why do you submit this PR? -->
3+
4+
## Testing status
5+
<!-- Remove the options that do not apply -->
6+
* No tests have been added.
7+
* Includes unit tests.
8+
* Includes performance tests.
9+
* Includes integration tests.
10+
11+
### Manual testing status
12+
<!-- Describe how you tested your implementation/fix. Try to mention all the cases and flows. -->
13+
<!-- It will help the reviewer to understand if you missed any cases or test steps as well as will tell more about your feature or fix. -->
14+
15+
## Comments to reviewers
16+
<!-- Notes for the reviewers you have assigned. Remove if not applicable-->
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
issue_comment:
3+
types: [created]
4+
name: Automatic Rebase
5+
jobs:
6+
rebase:
7+
name: Rebase
8+
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@master
12+
with:
13+
fetch-depth: 0
14+
- name: Automatic Rebase
15+
uses: cirrus-actions/[email protected]
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Assign PR to it's author
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
automation:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Assign PR to creator
10+
uses: thomaseizinger/[email protected]
11+
if: github.event_name == 'pull_request' && github.event.action == 'opened'
12+
with:
13+
repo-token: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "PR Title Convention Validation"
2+
on:
3+
pull_request:
4+
types:
5+
- opened
6+
- edited
7+
- synchronize
8+
9+
jobs:
10+
main:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: amannn/[email protected]
14+
env:
15+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Publish to npm
2+
3+
# Controls when the action will run.
4+
# In this case, I'm saying on each release event when it's specifically a new release publish, the types: [published] is required here,
5+
# since releases could also be updated or deleted, we only want to publish to npm when a new release is created (published).
6+
on:
7+
release:
8+
types: [published, edited]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
15+
- uses: actions/checkout@v2
16+
#Install Node.js, with the version 14 and using the registry URL of npm, this could be changed to a custom registry or the GitHub registry.
17+
- uses: actions/setup-node@v1
18+
with:
19+
node-version: 14
20+
registry-url: https://registry.npmjs.org/
21+
22+
# Publish to npm
23+
- run: npm publish <your-package-name> --access public
24+
env:
25+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

.gitignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Asset meta data should only be ignored when the corresponding asset is also ignored
2+
!/[Aa]ssets/**/*.meta
3+
4+
# Uncomment this line if you wish to ignore the asset store tools plugin
5+
# /[Aa]ssets/AssetStoreTools*
6+
7+
# Autogenerated Jetbrains Rider plugin
8+
[Aa]ssets/Plugins/Editor/JetBrains*
9+
10+
# Visual Studio cache directory
11+
.vs/
12+
13+
# Gradle cache directory
14+
.gradle/
15+
16+
# Autogenerated VS/MD/Consulo solution and project files
17+
ExportedObj/
18+
.consulo/
19+
*.csproj
20+
*.unityproj
21+
*.sln
22+
*.suo
23+
*.tmp
24+
*.user
25+
*.userprefs
26+
*.pidb
27+
*.booproj
28+
*.svd
29+
*.pdb
30+
*.mdb
31+
*.opendb
32+
*.VC.db
33+
34+
# Unity3D generated meta files
35+
*.pidb.meta
36+
*.pdb.meta
37+
*.mdb.meta
38+
39+
# Unity3D generated file on crash reports
40+
sysinfo.txt
41+
42+
# Builds
43+
*.apk
44+
*.unitypackage
45+
46+
# Crashlytics generated file
47+
crashlytics-build.properties
48+
49+
PackageSampleProject/.idea
50+
PackageSampleProject/obj
51+
PackageSampleProject/Logs
52+
PackageSampleProject/Temp
53+
PackageSampleProject/UserSettings
54+
PackageSampleProject/ProjectSettings
55+
PackageSampleProject/Library

PackageSampleProject/Assets/Scenes.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)