-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaction.yml
32 lines (32 loc) · 931 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
30
31
32
name: "Notion Update Page"
description: "Update property of Notion page on commit"
branding:
icon: book-open
color: white
inputs:
gh-username:
description: "GitHub username of user who has access to the repository"
required: true
gh-token:
description: "GitHub access token of user who has access to the repository"
required: true
notion-key:
description: "Notion Integration Secret Key"
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: "node16"
main: "dist/index.js"