Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maheshrijal/pocketcasts-readme
Updates README.md with 5 recently listened Pocketcasts podcast
https://github.com/maheshrijal/pocketcasts-readme
monitoring
Last synced: about 1 month ago
JSON representation
Updates README.md with 5 recently listened Pocketcasts podcast
- Host: GitHub
- URL: https://github.com/maheshrijal/pocketcasts-readme
- Owner: maheshrijal
- License: cc0-1.0
- Created: 2023-09-15T04:30:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-27T17:30:16.000Z (about 1 year ago)
- Last Synced: 2024-12-23T19:48:59.619Z (about 1 month ago)
- Topics: monitoring
- Language: Go
- Homepage: https://github.com/marketplace/actions/pocketcasts-readme
- Size: 59.6 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pocketcasts-readme
Updates README with recently listened podcasts from Pocketcasts# Setup
## Prep Work
1. You need to save the pocketcasts Email & Password in the repository secrets. You can find that in the Settings of your Repository. Be sure to save those as the following.
- `POCKETCASTS_EMAIL = `
- `POCKETCASTS_PASSWORD = `# Update your README
Add a comment to your README.md like this:
```markdown
```
# Repository Workflow
Please follow the steps below:
1. Go to your `//actions`, hit New workflow, set up a workflow yourself, delete all the default content github made for you.
2. Copy the below code and paste it to your new workflow```
name: Update pods
on:
workflow_dispatch:
schedule:
# Runs every 8 hours
- cron: "0 */8 * * *"permissions:
contents: writejobs:
build:
runs-on: ubuntu-lateststeps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Update README
uses: maheshrjl/pocketcasts-readme@main
with:
POCKETCASTS_EMAIL: ${{ secrets.POCKETCASTS_EMAIL }}
POCKETCASTS_PASSWORD: ${{ secrets.POCKETCASTS_PASSWORD }}
- name: Push Changes
uses: stefanzweifel/git-auto-commit-action@v4
```## License
[![CC0](https://licensebuttons.net/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/)
To the extent possible under law, [Mahesh Rijal](https://maheshrjl.com/) has waived all copyright and related or neighboring rights to this work.
_Inspired by [abhisheknaiidu/todoist-readme](https://github.com/abhisheknaiidu/todoist-readme)_