Nightly tests CLI #366
This file contains hidden or 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: Nightly tests CLI | |
| on: | |
| schedule: | |
| - cron: '15 03 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| nightly_job: | |
| if: github.repository_owner == 'IntersectMBO' || github.event_name != 'schedule' | |
| # reusable workflow from local repo and same branch as this config | |
| uses: ./.github/workflows/regression_reusable.yaml | |
| with: | |
| env-path: .github/env_nightly_cli | |
| secrets: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CI_FAIL_MAILS: ${{ secrets.NIGHTLY_FAIL_MAILS }} | |
| GMAIL_USERNAME: ${{ secrets.GMAIL_USERNAME }} | |
| GMAIL_PASSWORD: ${{ secrets.GMAIL_PASSWORD }} |