fix: reading workflow
This commit is contained in:
parent
ed7c06a5f3
commit
4f134f47da
3 changed files with 12 additions and 4 deletions
14
.github/workflows/reading.yaml
vendored
14
.github/workflows/reading.yaml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Update book
|
name: Reading
|
||||||
run-name: Book (${{ inputs.isbn }})
|
run-name: Book (${{ inputs.isbn }})
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
@ -9,6 +9,16 @@ on:
|
||||||
description: The book's ISBN. Required.
|
description: The book's ISBN. Required.
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
book-status:
|
||||||
|
description: What is the status of the book? Required.
|
||||||
|
required: true
|
||||||
|
type: choice
|
||||||
|
default: "want to read"
|
||||||
|
options:
|
||||||
|
- "want to read"
|
||||||
|
- "started"
|
||||||
|
- "finished"
|
||||||
|
- "abandoned"
|
||||||
notes:
|
notes:
|
||||||
description: Notes about the book. Optional.
|
description: Notes about the book. Optional.
|
||||||
type: string
|
type: string
|
||||||
|
@ -23,11 +33,9 @@ on:
|
||||||
- ⭐️⭐️⭐️
|
- ⭐️⭐️⭐️
|
||||||
- ⭐️⭐️⭐️⭐️
|
- ⭐️⭐️⭐️⭐️
|
||||||
- ⭐️⭐️⭐️⭐️⭐️
|
- ⭐️⭐️⭐️⭐️⭐️
|
||||||
# Tags are optional.
|
|
||||||
tags:
|
tags:
|
||||||
description: Add tags to categorize the book. Separate each tag with a comma. Optional.
|
description: Add tags to categorize the book. Separate each tag with a comma. Optional.
|
||||||
type: string
|
type: string
|
||||||
# If you do not submit date-started or date-finished, the book status will be set to "want to read"
|
|
||||||
date-started:
|
date-started:
|
||||||
description: Date you started the book (YYYY-MM-DD). Optional.
|
description: Date you started the book (YYYY-MM-DD). Optional.
|
||||||
type: string
|
type: string
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "12.0.1",
|
"version": "12.0.2",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
0
src/_data/json/read.json
Normal file
0
src/_data/json/read.json
Normal file
Reference in a new issue