Skip to content

Commit 2f16db8

Browse files
authored
Reorganize TypeScript Action config files (#16)
* move JS config files to top-level and reformat * add EOF newlines
1 parent a1b01e8 commit 2f16db8

33 files changed

+284
-640
lines changed

delete-inactive-deployments/.eslintrc.json renamed to .eslintrc.json

File renamed without changes.

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/** -diff linguist-generated=true

.gitignore

Lines changed: 99 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,99 @@
1-
node_modules
1+
# Dependency directory
2+
node_modules
3+
4+
# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
lerna-debug.log*
12+
13+
# Diagnostic reports (https://nodejs.org/api/report.html)
14+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
15+
16+
# Runtime data
17+
pids
18+
*.pid
19+
*.seed
20+
*.pid.lock
21+
22+
# Directory for instrumented libs generated by jscoverage/JSCover
23+
lib-cov
24+
25+
# Coverage directory used by tools like istanbul
26+
coverage
27+
*.lcov
28+
29+
# nyc test coverage
30+
.nyc_output
31+
32+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
33+
.grunt
34+
35+
# Bower dependency directory (https://bower.io/)
36+
bower_components
37+
38+
# node-waf configuration
39+
.lock-wscript
40+
41+
# Compiled binary addons (https://nodejs.org/api/addons.html)
42+
build/Release
43+
44+
# Dependency directories
45+
jspm_packages/
46+
47+
# TypeScript v1 declaration files
48+
typings/
49+
50+
# TypeScript cache
51+
*.tsbuildinfo
52+
53+
# Optional npm cache directory
54+
.npm
55+
56+
# Optional eslint cache
57+
.eslintcache
58+
59+
# Optional REPL history
60+
.node_repl_history
61+
62+
# Output of 'npm pack'
63+
*.tgz
64+
65+
# Yarn Integrity file
66+
.yarn-integrity
67+
68+
# dotenv environment variables file
69+
.env
70+
.env.test
71+
72+
# parcel-bundler cache (https://parceljs.org/)
73+
.cache
74+
75+
# next.js build output
76+
.next
77+
78+
# nuxt.js build output
79+
.nuxt
80+
81+
# vuepress build output
82+
.vuepress/dist
83+
84+
# Serverless directories
85+
.serverless/
86+
87+
# FuseBox cache
88+
.fusebox/
89+
90+
# DynamoDB Local files
91+
.dynamodb/
92+
93+
# OS metadata
94+
.DS_Store
95+
Thumbs.db
96+
97+
# Ignore built ts files
98+
__tests__/runner/*
99+
lib/**/*

.prettierignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
deploy-helm/charts/example/*.yaml
1+
dist/
2+
lib/
3+
node_modules/

delete-inactive-deployments/.prettierrc.json renamed to .prettierrc.json

File renamed without changes.

delete-inactive-deployments/.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

delete-inactive-deployments/.gitignore

Lines changed: 0 additions & 99 deletions
This file was deleted.

delete-inactive-deployments/.prettierignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

deploy-helm/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
| parameter | description | required | default |
3737
| - | - | - | - |
3838
| token | GITHUB_TOKEN to access the GitHub API if the repository is private | `false` | |
39+
| actor | GitHub Access User to use alongside above token | `false` | ${{ github.actor }} |
3940
| chart_path | Path to Helm chart | `false` | deployments/helm/${{ github.event.repository.name }} |
4041
| image_tag | Tag of Docker image | `false` | latest |
4142
| namespace | Namespace to deploy Helm chart. If not provided, will be calculated from action trigger | `false` | |

0 commit comments

Comments
 (0)