generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
25 lines (25 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
name: '"Update Notion Page" Action for GitHub Actions'
description: 'GitHub Action to update an existing notion page'
author: "ydataai"
branding:
icon: 'arrow-up-right'
color: 'white'
inputs:
notion_secret:
description: 'Notion secret token'
required: true
notion_page_id:
description: 'Notion page ID. This input is required if updating a page directly using its id.'
required: false
notion_database_id:
description: 'Notion database ID. This input is required if updating a page that is part of a database using a query filter.'
required: false
notion_database_query_filter:
description: 'Notion database query filter. This input is required if using a query filter to update a page that is part of a database.'
required: false
notion_page_update_properties:
description: 'Notion page properties to be updated.'
required: true
runs:
using: 'node16'
main: 'dist/index.js'