18 lines
433 B
YAML
Raw Normal View History

2022-07-15 13:57:33 +12:00
name: Keepalive
on:
2023-08-09 16:19:09 +12:00
# At 1:05 PM UTC, on day 22 of the month
2022-07-15 13:57:33 +12:00
schedule:
2023-08-09 16:19:09 +12:00
- cron: '5 13 22 * *'
workflow_dispatch:
2022-07-15 13:57:33 +12:00
jobs:
keepalive:
name: Keepalive
# Only run cron on the symbiote account
2022-08-03 13:54:28 +12:00
if: (github.event_name == 'schedule' && github.repository_owner == 'symbiote') || (github.event_name != 'schedule')
2022-07-15 13:57:33 +12:00
runs-on: ubuntu-latest
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@v1