Daily workflows #348
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 | |
jobs: | |
run-daily-tests: | |
uses: ./.github/workflows/testing.yml | |
secrets: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
S3_GIN_BUCKET: ${{ secrets.S3_GIN_BUCKET }} | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
run-daily-doc-link-checks: | |
uses: ./.github/workflows/test-external-links.yml | |
notify-test-failure: | |
runs-on: ubuntu-latest | |
needs: [run-daily-tests] | |
if: ${{ always() && needs.run-daily-tests.result == 'failure' }} | |
steps: | |
- uses: dawidd6/action-send-mail@v3 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 465 | |
username: ${{ secrets.MAIL_USERNAME }} | |
password: ${{ secrets.MAIL_PASSWORD }} | |
subject: NeuroConv Daily Test Failure | |
to: ${{ secrets.DAILY_FAILURE_EMAIL_LIST }} | |
from: NeuroConv | |
body: "The daily test workflow failed, please check status at https://github.com/catalystneuro/neuroconv/actions/workflows/dailies.yml" | |
notify-link-check-failure: | |
runs-on: ubuntu-latest | |
needs: [run-daily-doc-link-checks] | |
if: ${{ always() && needs.run-daily-doc-link-checks.result == 'failure' }} | |
steps: | |
- uses: dawidd6/action-send-mail@v3 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 465 | |
username: ${{ secrets.MAIL_USERNAME }} | |
password: ${{ secrets.MAIL_PASSWORD }} | |
subject: NeuroConv Daily Doc Link Check Failure | |
to: ${{ secrets.DAILY_FAILURE_EMAIL_LIST }} | |
from: NeuroConv | |
body: "The daily check for working links in the documentation failed, please check status at https://github.com/catalystneuro/neuroconv/actions/workflows/dailies.yml" |