Skip to content

Nightly Dispatcher

Nightly Dispatcher #74

name: Nightly Dispatcher
on:
workflow_dispatch:
# Important note about scheduled workflows:
# Notifications for scheduled workflows are sent to the user who last modified the cron syntax in the workflow file.
schedule:
- cron: "0 2 * * *"
jobs:
backward-compatibility:
uses: ./.github/workflows/backward-compatibility.yml
docker-builds:
uses: ./.github/workflows/docker-builds.yml
aggregator-stress-test:
uses: ./.github/workflows/aggregator-stress-test.yml
test-client:
uses: ./.github/workflows/test-client.yml
notify-on-failure:
uses: ./.github/workflows/test-notify-on-failure.yml

Check failure on line 24 in .github/workflows/nightly-dispatcher.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/nightly-dispatcher.yml

Invalid workflow file

error parsing called workflow ".github/workflows/nightly-dispatcher.yml" -> "./.github/workflows/test-notify-on-failure.yml" (source branch with sha:31aa28639569a2af736a1d20ea56e02c26a3b13d) : workflow is not reusable as it is missing a `on.workflow_call` trigger
needs: [docker-builds, aggregator-stress-test, test-client]
if: failure()