Daily workflows #120
This file contains 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: 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" |