fix: reading workflow
This commit is contained in:
parent
ed7c06a5f3
commit
63ee4c5a43
3 changed files with 24 additions and 12 deletions
34
.github/workflows/reading.yaml
vendored
34
.github/workflows/reading.yaml
vendored
|
@ -1,7 +1,11 @@
|
||||||
name: Update book
|
name: Reading
|
||||||
run-name: Book (${{ inputs.isbn }})
|
run-name: 📚 ${{ inputs['book-status'] }} book ${{ inputs.isbn }}
|
||||||
|
|
||||||
|
# Grant the action permission to write to the repository
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
|
# Trigger the action
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -9,6 +13,19 @@ 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"
|
||||||
|
date:
|
||||||
|
description: Date to record the status of the book (YYYY-MM-DD). Leave blank for today. Optional.
|
||||||
|
type: string
|
||||||
notes:
|
notes:
|
||||||
description: Notes about the book. Optional.
|
description: Notes about the book. Optional.
|
||||||
type: string
|
type: string
|
||||||
|
@ -27,23 +44,18 @@ on:
|
||||||
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:
|
# Set up the steps to run the action
|
||||||
description: Date you started the book (YYYY-MM-DD). Optional.
|
|
||||||
type: string
|
|
||||||
date-finished:
|
|
||||||
description: Date you finished the book (YYYY-MM-DD). Optional.
|
|
||||||
type: string
|
|
||||||
jobs:
|
jobs:
|
||||||
update-library:
|
update-library:
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
name: Read
|
name: Read
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Read
|
- name: Read
|
||||||
uses: katydecorah/read-action@v7.1.0
|
uses: katydecorah/read-action@v8.1.0
|
||||||
with:
|
with:
|
||||||
filename: src/_data/json/read.json
|
filename: src/_data/json/read.json
|
||||||
time-zone: America/Los_Angeles
|
time-zone: America/Los_Angeles
|
||||||
|
|
|
@ -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