Keep scheduled jobs running #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |