Crypto Sentinel #644
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: Crypto Sentinel | |
| on: | |
| schedule: | |
| # 4x/day: 10am, 4pm, 10pm, 4am AEDT (UTC+11 in summer) | |
| - cron: "0 23,5,9,15 * * *" | |
| workflow_dispatch: # allow manual trigger from GitHub UI | |
| jobs: | |
| monitor: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - name: Restore article cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: cache.json | |
| key: sentinel-cache-${{ github.run_id }} | |
| restore-keys: sentinel-cache- | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build | |
| - name: Run sentinel | |
| env: | |
| GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} | |
| RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }} | |
| RECIPIENT_EMAIL: ${{ vars.RECIPIENT_EMAIL }} | |
| WATCH_KEYWORDS: ${{ vars.WATCH_KEYWORDS }} | |
| TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }} | |
| TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }} | |
| run: node dist/index.js |