Skip to content

Commit 805fa8b

Browse files
committed
Removed database_type and outputs options
1 parent e68c7c6 commit 805fa8b

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

action.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,9 @@ description: "Populates the learning section in your github readme with data fro
33
author: devorein
44

55
inputs:
6-
database_type: # id of input
7-
description: "What type of database are you using, a collection view page (full page database) or a collection view (inline database)"
8-
required: false
9-
default: "cvp"
106
database_id:
117
description: "The id of the database"
128
required: true
13-
outputs:
14-
success: # id of output
15-
description: "Whether or not the operation was successful or not"
169

1710
branding:
1811
icon: "box"

dist/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16701,7 +16701,7 @@ async function main() {
1670116701
]
1670216702
},
1670316703
{
16704-
token: secrets.NOTION_TOKEN_V2
16704+
token: process.secrets.NOTION_TOKEN_V2
1670516705
}
1670616706
);
1670716707

@@ -16727,7 +16727,7 @@ async function main() {
1672716727
]
1672816728
},
1672916729
{
16730-
token: secrets.NOTION_TOKEN_V2
16730+
token: process.secrets.NOTION_TOKEN_V2
1673116731
}
1673216732
);
1673316733

@@ -16746,7 +16746,7 @@ async function main() {
1674616746
}
1674716747
},
1674816748
{
16749-
token: secrets.NOTION_TOKEN_V2
16749+
token: process.secrets.NOTION_TOKEN_V2
1675016750
}
1675116751
);
1675216752

src/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function main() {
1717
]
1818
},
1919
{
20-
token: secrets.NOTION_TOKEN_V2
20+
token: process.secrets.NOTION_TOKEN_V2
2121
}
2222
);
2323

@@ -43,7 +43,7 @@ async function main() {
4343
]
4444
},
4545
{
46-
token: secrets.NOTION_TOKEN_V2
46+
token: process.secrets.NOTION_TOKEN_V2
4747
}
4848
);
4949

@@ -62,7 +62,7 @@ async function main() {
6262
}
6363
},
6464
{
65-
token: secrets.NOTION_TOKEN_V2
65+
token: process.secrets.NOTION_TOKEN_V2
6666
}
6767
);
6868

0 commit comments

Comments
 (0)