Keepalive #24
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: Keepalive | |
"on": | |
# Manual trigger | |
workflow_dispatch: | |
# Every day | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: | |
actions: write | |
jobs: | |
keepalive: | |
name: Keepalive | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the project | |
uses: actions/checkout@v4 | |
- name: Keep the GitHub Actions workflows alive | |
uses: gautamkrishnar/keepalive-workflow@v2 | |
with: | |
workflow_files: cd.yml | |
time_elapsed: 0 |