Skip to content

Schedule tests for next versions of external CLIs #87

Schedule tests for next versions of external CLIs

Schedule tests for next versions of external CLIs #87

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