Skip to content

v8.0.0

Compare
Choose a tag to compare
@katydecorah katydecorah released this 21 Dec 01:38
· 71 commits to main since this release

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:

  1. Remove date-started and date-finished from workflow_dispatch.inputs, these fields are no longer available.
  2. Add book-status and date as workflow_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
  1. If using the API to trigger the workflow, update your payload with the new shape.

Full Changelog: v7.4.1...v8.0.0