-
Notifications
You must be signed in to change notification settings - Fork 9
/
action.yml
36 lines (36 loc) · 1.19 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: 'NotionHook'
description: 'Sync your commits to Notion'
branding:
icon: 'check-circle'
color: 'white'
inputs:
notion_secret:
description: 'Notion Secret retrieved from My Integrations on notion.so/my-integrations'
required: true
notion_database:
description: 'the id of the database you want to save the commits'
required: true
commit_description:
description: "Name of the Database column for the description field: this is the commit message after a carriage return."
required: true
default: "description"
commit_url:
description: "Name of Database column for commit url"
required: true
default: "Url"
commit_id:
description: "Name of the Database column for commit id"
required: true
default: "Id"
commit_project:
description: "MultiSelect field for the project name: please pre-fill it in Notion first!"
required: true
default: "Project"
files_format:
description: "Which Format you would like to get your list of files"
default: "text-list"
token:
description: "Create a personal access token on GitHub for the GitHub Api"
runs:
using: 'node12'
main: 'dist/index.js'