Schedule tests for current versions of external CLIs #803
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: Schedule tests for current versions of external CLIs | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 1 * * 1-5" | |
| jobs: | |
| call_tests_workflow: | |
| name: Run CLI tests | |
| uses: ./.github/workflows/applications.yml | |
| with: | |
| deps-version-tag: latest | |
| teams_notification_on_failure: | |
| name: Send Teams notification | |
| runs-on: ubuntu-latest | |
| needs: [call_tests_workflow] | |
| if: always() && contains(needs.*.result, 'failure') | |
| steps: | |
| - uses: DevExpress/github-actions/send-teams-notification@main | |
| with: | |
| hook_url: ${{secrets.TEAMS_ALERT_WEBHOOK}} | |
| bearer_token: ${{secrets.GITHUB_TOKEN}} | |
| only_on_push: false |