Skip to content

Commit 54e0742

Browse files
committed
Initial commit - wip
0 parents  commit 54e0742

11 files changed

Lines changed: 29964 additions & 0 deletions

File tree

.eslintrc.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
commonjs: true,
5+
es2021: true,
6+
"jest/globals": true
7+
},
8+
extends: [
9+
'standard'
10+
],
11+
parserOptions: {
12+
ecmaVersion: 12
13+
},
14+
plugins: ["jest"],
15+
rules: {
16+
}
17+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

action.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 'Notion github catalog'
2+
description: 'Scans all github repositories and updates a notion database'
3+
icon: type
4+
color: green
5+
inputs:
6+
github_token:
7+
description: 'Github API token'
8+
required: true
9+
notion_token:
10+
description: 'Notion API token'
11+
required: true
12+
database:
13+
description: 'Parent database to add to'
14+
required: true
15+
outputs:
16+
status:
17+
description: 'The status of the scan'
18+
runs:
19+
using: 'node12'
20+
main: 'dist/index.js'

0 commit comments

Comments
 (0)