Skip to content

Monthly Due Update #111

Monthly Due Update

Monthly Due Update #111

Workflow file for this run

name: Monthly Due Update
on:
schedule:
- cron: "30 00 * * *"
workflow_dispatch: # Allows manual run
jobs:
run-monthly-job:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install Dependencies
run: npm install
- name: Run Monthly Due Script
env:
MONGO_URL: ${{ secrets.MONGO_URL }}
run: node services/cronJobs.js