This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/.github/workflows/reading.yaml
2024-04-17 14:54:50 -07:00

65 lines
No EOL
1.8 KiB
YAML

name: Reading
run-name: Book (${{ inputs.isbn }})
permissions:
contents: write
on:
workflow_dispatch:
inputs:
isbn:
description: The book's ISBN. Required.
required: true
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:
description: Notes about the book. Optional.
type: string
rating:
description: Rate the book. Optional.
type: choice
default: "unrated"
options:
- "unrated"
- ⭐️
- ⭐️⭐️
- ⭐️⭐️⭐️
- ⭐️⭐️⭐️⭐️
- ⭐️⭐️⭐️⭐️⭐️
tags:
description: Add tags to categorize the book. Separate each tag with a comma. Optional.
type: string
date-started:
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:
update-library:
runs-on: macOS-latest
name: Read
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Read
uses: katydecorah/read-action@v7.1.0
with:
filename: src/_data/json/read.json
time-zone: America/Los_Angeles
- name: Commit updated read file
run: |
git pull
git config --local user.email "coryd@hey.com"
git config --local user.name "Cory Dransfeldt"
git add -A && git commit -m "📚 “${{ env.BookTitle }}” (${{ env.BookStatus }})"
git push