18 lines
440 B
YAML
Raw Normal View History

2022-07-14 12:50:11 +12:00
name: Keepalive
on:
2023-08-09 15:07:45 +12:00
# At 1:05 AM UTC, on day 26 of the month
2022-07-14 12:50:11 +12:00
schedule:
2023-08-09 15:07:45 +12:00
- cron: '5 1 26 * *'
workflow_dispatch:
2022-07-14 12:50:11 +12:00
jobs:
keepalive:
name: Keepalive
# Only run cron on the silverstripe account
2022-08-01 09:57:38 +12:00
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
2022-07-14 12:50:11 +12:00
runs-on: ubuntu-latest
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@v1