Skip to content

Github Action with a cronjob trigger #1065

Github Action with a cronjob trigger

Github Action with a cronjob trigger #1065

Workflow file for this run

name: Github Action with a cronjob trigger
on:
schedule:
- cron: "0 0 * * *"
jobs:
workflow-keepalive:
if: github.event_name == 'schedule'
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- uses: liskin/gh-workflow-keepalive@v1