8000 Synced and updated with user's goodreads book lists · esidate/esidate@9cde8f6 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Latest book list from a goodreads #30440

Latest book list from a goodreads

Latest book list from a goodreads #30440

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"
0