Skip to content

Github Action with a cronjob trigger #384

Github Action with a cronjob trigger

Github Action with a cronjob trigger #384

Workflow file for this run

---
name: Github Action with a cronjob trigger
on:
schedule:
- cron: "0 0 * */1 *"
jobs:
keepalive:
name: Cronjob based github action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.BOT_GH_TOKEN }}
- uses: gautamkrishnar/keepalive-workflow@v1
with:
gh_token: ${{ secrets.BOT_GH_TOKEN }}