Keep Codespace Alive #431
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 Codespace Alive | |
on: | |
schedule: | |
- cron: '0 */6 * * *' # 每6小时运行一次 | |
jobs: | |
keep-alive: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Keep Codespace Alive | |
run: echo "Keeping Codespace Alive" |