Skip to content

Discord Notify Bot #140

Discord Notify Bot

Discord Notify Bot #140

name: Discord Notify Bot
on:
workflow_dispatch:
schedule:
- cron: "*/10 * * * *"
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run notify script
env:
SOURCE_URL: ${{ secrets.SOURCE_URL }}
DISCORD_WEBHOOK_URL: ${{ secrets.STAFF_DISCORD_WEBHOOK_URL }}
run: node index.js