Skip to content

Commit b9f939b

Browse files
sudo-robotwilliamdes
authored andcommitted
__INIT__
0 parents  commit b9f939b

File tree

251 files changed

+25452
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

251 files changed

+25452
-0
lines changed

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build
2+
3+
on: [push]
4+
5+
jobs:
6+
lint-node:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: actions/setup-node@v1
11+
with:
12+
node-version: 12
13+
- name: Cache module
14+
uses: actions/[email protected]
15+
with:
16+
path: ~/.npm/
17+
key: npm-cache
18+
- name: Install modules
19+
run: npm ci

.github/workflows/lock.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: lock pull-request
2+
on:
3+
pull_request:
4+
types:
5+
- closed
6+
jobs:
7+
lock:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: lock pull request
11+
uses: sudo-bot/[email protected]
12+
with:
13+
github-token: ${{ secrets.GITHUB_TOKEN }}
14+
number: ${{ github.event.pull_request.number }}
15+
lock-reason: resolved

.github/workflows/merge.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: merge pull-request
2+
on:
3+
pull_request:
4+
types:
5+
- closed
6+
jobs:
7+
merge:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: merge pull request
11+
uses: sudo-bot/[email protected]
12+
with:
13+
github-token: ${{ secrets.GITHUB_TOKEN }}
14+
number: ${{ github.event.pull_request.number }}
15+
merge-method: fast-forward
16+
allowed-usernames-regex: ^williamdes$
17+
filter-label: merge-it

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/.env
2+
/node_modules/**/*.md
3+
!/node_modules/**/LICENSE.*
4+
/node_modules/**/.github
5+
/node_modules/**/.github
6+
/node_modules/**/.travis.yml
7+
/node_modules/**/.npm*
8+
/node_modules/**/*.map
9+
/node_modules/**/*.d.ts
10+
/node_modules/**/test
11+
/node_modules/@types
12+
/node_modules/@octokit/types
13+
/node_modules/pump/test-*

0 commit comments

Comments
 (0)