Latest book list from a goodreads #30440
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Latest book list from a goodreads | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
workflow_dispatch: | |
jobs: | |
update-readme-with-goodreads-currently-reading-books: | |
name: Update this repo's README with what you're currently reading | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: zwacky/goodreads-profile-workflow@main | |
with: | |
# Replace this with your goodreads user id | |
goodreads_user_id: "142328347" | |
comment_tag_name: "GOODREADS-LIST-CURRENTLY-READING" | |
shelf: "currently-reading" | |
update-readme-with-goodreads-read-books: | |
name: Update this repo's README with what you're currently reading | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: zwacky/goodreads-profile-workflow@main | |
with: | |
# Replace this with your goodreads user id | |
goodreads_user_id: "142328347" | |
comment_tag_name: "GOODREADS-LIST-READ" | |
shelf: "read" | |
update-readme-with-goodreads-to-read-books: | |
name: Update this repo's README with what you're currently reading | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: zwacky/goodreads-profile-workflow@main | |
with: | |
# Replace this with your goodreads user id | |
goodreads_user_id: "142328347" | |
comment_tag_name: "GOODREADS-LIST-TO-READ" | |
shelf: "to-read" |