summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/schedule.yaml
blob: f69f016eab866d639da18d38d150fb8e562da044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Schedule Trigger

on:
  schedule:
    - cron: '0 6 * * *'
  workflow_dispatch:

jobs:
  Release-Nightly:
    runs-on: ubuntu-latest
    steps:
      - name: Execute
        uses: benc-uk/workflow-dispatch@v123
        with:
          workflow: "release_beta_to_dev"
          token: ${{ secrets.WF_GITHUB_TOKEN }}
          ref: "refs/heads/development"