From 63ee4c5a43d2c8d6c9f1a0ed4be918dba8a40276 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 17 Apr 2024 14:47:08 -0700 Subject: [PATCH] fix: reading workflow --- .github/workflows/reading.yaml | 34 +++++++++++++++++++++++----------- package.json | 2 +- src/_data/json/read.json | 0 3 files changed, 24 insertions(+), 12 deletions(-) create mode 100644 src/_data/json/read.json diff --git a/.github/workflows/reading.yaml b/.github/workflows/reading.yaml index b469006d..9c9fac37 100644 --- a/.github/workflows/reading.yaml +++ b/.github/workflows/reading.yaml @@ -1,7 +1,11 @@ -name: Update book -run-name: Book (${{ inputs.isbn }}) +name: Reading +run-name: 📚 ${{ inputs['book-status'] }} book ${{ inputs.isbn }} + +# Grant the action permission to write to the repository permissions: contents: write + +# Trigger the action on: workflow_dispatch: inputs: @@ -9,6 +13,19 @@ on: 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" + date: + description: Date to record the status of the book (YYYY-MM-DD). Leave blank for today. Optional. + type: string notes: description: Notes about the book. Optional. type: string @@ -27,23 +44,18 @@ on: tags: description: Add tags to categorize the book. Separate each tag with a comma. Optional. type: string - # If you do not submit date-started or date-finished, the book status will be set to "want to read" - 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 + +# Set up the steps to run the action jobs: update-library: runs-on: macOS-latest name: Read steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Read - uses: katydecorah/read-action@v7.1.0 + uses: katydecorah/read-action@v8.1.0 with: filename: src/_data/json/read.json time-zone: America/Los_Angeles diff --git a/package.json b/package.json index 55ff7284..9b4a87c8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "12.0.1", + "version": "12.0.2", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_data/json/read.json b/src/_data/json/read.json new file mode 100644 index 00000000..e69de29b