Skip to content

Commit

Permalink
Add Odroid keepalive CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-bc committed Feb 4, 2025
1 parent a4c51fd commit 795e845
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/odroid-keepalive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# The purpose of this workflow is to prevent the Odroid (self-hosted) runner
# from being de-registered by GitHub due to inactivity.
# We only use the Odroid on FPP releases, but runners get de-registered after 14 days
# of idling.
# See https://github.com/orgs/community/discussions/58146
# https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository


name: Odroid Keepalive

on:
workflow_dispatch:
schedule:
- cron: '0 0 */10 * *'

jobs:
keepAlive:
runs-on: odroid
steps:
- name: Echo a message
run: echo I am still alive!

0 comments on commit 795e845

Please sign in to comment.