-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
55 lines (52 loc) · 1.27 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: "Notion to Jekyll"
description: "GitHub action for synchronizing Notion to Jekyll"
author: "whatasame"
branding:
icon: "upload-cloud"
color: "red"
inputs:
notion_api_key:
description: "Notion API key"
required: true
notion_database_id:
description: "Notion database ID"
required: true
github_workspace:
description: "Github workspace"
required: false
default: ${{ github.workspace }}
post_dir:
description: "Post directory"
required: false
default: "_posts"
post_layout:
description: "Post layout"
required: false
default: "post"
post_layout_skip:
description: "Post layout skip"
required: false
default: false
commit_username:
description: "Commit username"
required: false
default: ${{ github.actor }}
commit_email:
description: "Commit email"
required: false
default: ${{ github.actor }}@users.noreply.github.com
commit_author:
description: "Commit author"
required: false
default: ${{ github.actor }}
commit_message:
description: "Commit message"
required: false
default: "Synchronized by Notion to Jekyll"
repository:
description: "Repository"
required: false
default: ${{ github.repository }}
runs:
using: node20
main: dist/index.js