File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ # The purpose of this workflow is to prevent the Odroid (self-hosted) runner
2+ # from being de-registered by GitHub due to inactivity.
3+ # We only use the Odroid on FPP releases, but runners get de-registered after 14 days
4+ # of idling.
5+ # See https://github.com/orgs/community/discussions/58146
6+ # https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository
7+
8+
9+ name : Odroid Keepalive
10+
11+ on :
12+ # workflow_dispatch allows for manual trigger in the repo 'Actions' tab
13+ workflow_dispatch :
14+ # run every Monday 8am
15+ schedule :
16+ - cron : ' 0 8 * * 1'
17+
18+ jobs :
19+ keepAlive :
20+ runs-on : odroid
21+ steps :
22+ - name : Echo a message
23+ run : echo I am still alive!
You can’t perform that action at this time.
0 commit comments