Skip to content

Commit ff93f63

Browse files
authored
Merge pull request #597 from thomas-bc/keepalive-workflow
Add Odroid keepalive CI workflow
2 parents a4c51fd + d780263 commit ff93f63

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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!

0 commit comments

Comments
 (0)