2022-07-14 01:28:50 +02:00
|
|
|
name: Keepalive
|
|
|
|
|
|
|
|
on:
|
2024-05-17 03:55:10 +02:00
|
|
|
# At 3:15 AM UTC, on day 24 of the month
|
2022-07-14 01:28:50 +02:00
|
|
|
schedule:
|
2024-05-17 03:55:10 +02:00
|
|
|
- cron: '15 3 24 * *'
|
2023-08-09 04:59:09 +02:00
|
|
|
workflow_dispatch:
|
2022-07-14 01:28:50 +02:00
|
|
|
|
2024-05-16 00:12:37 +02:00
|
|
|
permissions: {}
|
|
|
|
|
2022-07-14 01:28:50 +02:00
|
|
|
jobs:
|
|
|
|
keepalive:
|
|
|
|
name: Keepalive
|
|
|
|
# Only run cron on the silverstripe account
|
2022-08-01 00:03:47 +02:00
|
|
|
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
2022-07-14 01:28:50 +02:00
|
|
|
runs-on: ubuntu-latest
|
2024-05-16 00:12:37 +02:00
|
|
|
permissions:
|
|
|
|
actions: write
|
2022-07-14 01:28:50 +02:00
|
|
|
steps:
|
|
|
|
- name: Keepalive
|
|
|
|
uses: silverstripe/gha-keepalive@v1
|