Skip to content
This repository was archived by the owner on Nov 14, 2021. It is now read-only.

Commit 6ae58f9

Browse files
committed
feat: Update inputs
1 parent 8331466 commit 6ae58f9

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

action.yml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,29 @@ inputs:
88
database-url:
99
description: URL of the notion database to extract.
1010
required: true
11+
docs-directory:
12+
description: Directory in which the notion pages to extract will be stored.
13+
required: false
14+
default: 'docs'
15+
filter-prop:
16+
description: Property of the filter to apply to the notion database.
17+
required: false
18+
default: ''
19+
filter-value:
20+
description: Value of the filter to apply to the notion database.
21+
required: false
22+
default: ''
1123

1224
runs:
13-
using: "docker"
14-
image: "Dockerfile"
25+
using: 'docker'
26+
image: 'Dockerfile'
1527
args:
1628
- --url
1729
- ${{ inputs.database-url }}
30+
- --docs-directory
31+
- ${{ inputs.docs-directory }}
32+
- --filter-prop
33+
- ${{ inputs.filter-prop }}
34+
- --filter-value
35+
- ${{ inputs.filter-value }}
1836
- --is-database

0 commit comments

Comments
 (0)