Skip to content

Daily workflows

Daily workflows #120

Workflow file for this run

name: Daily workflows
on:
workflow_dispatch:
schedule:
- cron: "0 16 * * *" # Daily at noon EST
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-daily-tests:
uses: ./.github/workflows/testing_dev.yml
notify:
runs-on: ubuntu-latest
needs: [run-daily-tests]
if: failure()
steps:
- uses: dawidd6/action-send-mail@v3
with:
server_address: smtp.gmail.com
server_port: 465 # TSL
username: ${{ secrets.MAIL_USERNAME }}
password: ${{ secrets.MAIL_PASSWORD }}
subject: Leifer Lab to NWB Daily Failure
to: [email protected]
from: Leifer Lab to NWB
body: "The daily workflow for Leifer Lab to NWB failed: please check status at https://github.com/CatalystNeuro/leifer-lab-to-nwb/actions/workflows/dailies.yml"