2022-07-15 04:07:19 +02:00
|
|
|
name: Keepalive
|
|
|
|
|
|
|
|
on:
|
2023-08-09 04:59:43 +02:00
|
|
|
# At 6:30 PM UTC, on day 15 of the month
|
2022-07-15 04:07:19 +02:00
|
|
|
schedule:
|
2023-08-09 04:59:43 +02:00
|
|
|
- cron: '30 18 15 * *'
|
|
|
|
workflow_dispatch:
|
2022-07-15 04:07:19 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
keepalive:
|
|
|
|
name: Keepalive
|
|
|
|
# Only run cron on the silverstripe account
|
2022-08-01 00:04:24 +02:00
|
|
|
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
2022-07-15 04:07:19 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Keepalive
|
|
|
|
uses: silverstripe/gha-keepalive@v1
|