forked from szenius/notion-update-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (29 loc) · 785 Bytes
/
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
name: "Notion Page Update"
description: "Update property of Notion page"
branding:
icon: book-open
color: white
inputs:
notion-key:
description: "Notion Integration Secret Key"
required: true
notion-page-id:
description: "Notion Page id to be updated"
required: true
notion-property-name:
description: "Notion Page property to be updated"
required: true
notion-update-value:
description: "New value for Notion page property"
required: true
existing-value:
description: "What to do with existing value in field to be updated"
required: false
default: "overwrite"
notion-property-type:
description: "Type of Notion Page property"
required: false
default: "rich_text"
runs:
using: "node12"
main: "dist/index.js"