Schedule tests for next versions of external CLIs #116
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: Schedule tests for next versions of external CLIs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 1 * * 1" | |
jobs: | |
call_tests_workflow: | |
name: Run CLI tests | |
uses: ./.github/workflows/applications.yml | |
with: | |
external-tools-version: next | |
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 |