v8.0.0
What's Changed
🚨 Breaking change: Consolidate date inputs, introduce book status input with new "abandoned" option by @katydecorah in #150
How to upgrade
Previously, the date-started
, date-finished
or absence of these values set the book's status. Now you must set a book-status
workflow dispatch input. The date files have been consolidated into a single date
input. The date field is still optional. If you do not set it, it will default to today's date.
Update your workflow file with the following:
- Remove
date-started
anddate-finished
fromworkflow_dispatch.inputs
, these fields are no longer available. - Add
book-status
anddate
asworkflow_dispatch.inputs
:
workflow_dispatch:
inputs:
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
- If using the API to trigger the workflow, update your payload with the new shape.
Full Changelog: v7.4.1...v8.0.0