Skip to content

Keep scheduled jobs running #81

Keep scheduled jobs running

Keep scheduled jobs running #81

Workflow file for this run

name: Keep scheduled jobs running
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
# Prevent scheduled jobs being disabled after 60 days
# see https://github.saobby.my.eu.orgmunity/t/no-notification-workflow-disabled-after-60-days/182169
# existing GitHub notifications don't seem to work at all
# this should trigger a dummy commit to the default branch every 50 days
jobs:
keepalive:
name: Keep scheduled jobs running
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gautamkrishnar/keepalive-workflow@v1