Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork73
rss-to-mastodon#34159
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
# Source: https://github.com/jser/mastofeedbot | |
name:rss-to-mastodon | |
on: | |
schedule: | |
-cron:'*/15 * * * *' | |
workflow_dispatch: | |
jobs: | |
realtime: | |
runs-on:ubuntu-latest | |
steps: | |
-name:Generate cache key | |
uses:actions/github-script@v6 | |
id:generate-key | |
with: | |
script:| | |
core.setOutput('cache-key', new Date().valueOf()) | |
-name:Retrieve cache | |
uses:actions/cache@v3 | |
with: | |
path:${{ github.workspace }}/mastofeedbot | |
key:feed-cache-realtime-jser-info-${{ steps.generate-key.outputs.cache-key }} | |
restore-keys:feed-cache-realtime-jser-info- | |
-name:JSer.info | |
uses:'jser/mastofeedbot@main' | |
with: | |
rss-feed:https://realtime.jser.info/feed.xml | |
api-endpoint:https://mstdn.jp | |
api-token:${{ secrets.JSER_MASTODON_TOKEN }} | |
cache-file:${{ github.workspace }}/mastofeedbot/cache.json | |
status-template:"{{title}}\n{{link}}\n\n{{description}}" | |
jser: | |
runs-on:ubuntu-latest | |
steps: | |
-name:Generate cache key | |
uses:actions/github-script@v6 | |
id:generate-key | |
with: | |
script:| | |
core.setOutput('cache-key', new Date().valueOf()) | |
-name:Retrieve cache | |
uses:actions/cache@v3 | |
with: | |
path:${{ github.workspace }}/mastofeedbot | |
key:feed-cache-jser-info-${{ steps.generate-key.outputs.cache-key }} | |
restore-keys:feed-cache-jser-info- | |
-name:JSer.info | |
uses:'jser/mastofeedbot@main' | |
with: | |
rss-feed:https://jser.info/rss/ | |
api-endpoint:https://mstdn.jp | |
api-token:${{ secrets.JSER_MASTODON_TOKEN }} | |
cache-file:${{ github.workspace }}/mastofeedbot/cache.json | |
status-template:"今週のJSer.infoを更新しました!\n{{title}}\n{{link}}" |