Skip to content

Hourly Check RSS and send notify #6618

Hourly Check RSS and send notify

Hourly Check RSS and send notify #6618

Workflow file for this run

name: Hourly Check RSS and send notify
on:
schedule:
- cron: "0 */1 * * *"
workflow_dispatch:
jobs:
sendNotify:
name: Send RSS Message to Tailchat
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 16.13.1
- name: Cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/[email protected]
with:
version: 6.24.2
run_install: true
- name: Checkout db
uses: moonrailgun/[email protected]
with:
path: db/posts.json
- name: Run RSS Script
run: pnpm start
env:
RSS_URL: ${{ secrets.RSS_URL }}
TC_NOTIFY_URL: ${{ secrets.TC_NOTIFY_URL }}