Skip to content

Commit

Permalink
Create keep_alive.yml
Browse files Browse the repository at this point in the history
GitHub automatically removes self-hosted runners after 14 days if no action was run. This dummy action keeps the runner alive.
  • Loading branch information
neilkichler authored Oct 7, 2024
1 parent 2d97abb commit 475bbb2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/keep_alive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: keep-alive

on:
schedule:
# times in UTC, standard Chron format
# - cron: '0 05 01,10,20 * *' # 5am 1st/10th/20th day of month
- cron: '*/5 * * * *'

workflow_dispatch:

jobs:
keep-alive:
runs-on: [self-hosted]
steps:
- name: gpu info
run: nvidia-smi

0 comments on commit 475bbb2

Please sign in to comment.