Keep Alive #51
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 Alive | |
on: | |
schedule: | |
- cron: '0 3 * * 4' | |
permissions: | |
actions: write | |
jobs: | |
keep-alive: | |
name: Keep Alive | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone project files | |
uses: actions/checkout@v4 | |
# keepalive-workflow keeps GitHub from turning off tests after 60 days | |
- uses: gautamkrishnar/keepalive-workflow@v2 | |
with: | |
time_elapsed: 45 | |
workflow_files: "unit-and-integration-test.yml" |