bazarr/.github/workflows/schedule.yaml

18 lines
362 B
YAML
Raw Permalink Normal View History

name: Schedule Trigger
on:
schedule:
- cron: '0 6 * * *'
workflow_dispatch:
jobs:
Release-Nightly:
runs-on: ubuntu-latest
steps:
- name: Execute
2024-03-20 17:22:04 +00:00
uses: benc-uk/workflow-dispatch@v1.2.3
2021-06-22 15:19:24 +00:00
with:
workflow: "release_beta_to_dev"
token: ${{ secrets.WF_GITHUB_TOKEN }}
ref: "refs/heads/development"