Skip to content

Scheduled Update

Scheduled Update #46

Workflow file for this run

name: Scheduled Update
on:
schedule:
- cron: '0 5,11,17,23 * * *'
workflow_dispatch:
permissions:
actions: write
jobs:
trigger-deploy:
runs-on: ubuntu-latest
steps:
- name: Trigger deploy workflow
uses: actions/github-script@v7
with:
script: |
await github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'deploy.yml',
ref: 'main'
});