Keep Alive #14
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: | |
contents: write | |
jobs: | |
keep-alive: | |
name: Keep Alive | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone project files | |
uses: actions/checkout@v3 | |
# keepalive-workflow adds a dummy commit if there's no other action here, keeps | |
# GitHub from turning off tests after 60 days | |
- uses: gautamkrishnar/keepalive-workflow@v1 | |
with: | |
commit_message: "chore(*): Automated commit to keep the repository active" | |
time_elapsed: 50 |