2023-08-09 04:26:23 +02:00
|
|
|
name: Keepalive
|
|
|
|
|
|
|
|
on:
|
2024-05-17 03:52:29 +02:00
|
|
|
# At 3:15 AM UTC, on day 16 of the month
|
2023-08-09 04:26:23 +02:00
|
|
|
schedule:
|
2024-05-17 03:52:29 +02:00
|
|
|
- cron: '15 3 16 * *'
|
2023-08-09 04:26:23 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2024-05-16 00:09:55 +02:00
|
|
|
permissions: {}
|
|
|
|
|
2023-08-09 04:26:23 +02:00
|
|
|
jobs:
|
|
|
|
keepalive:
|
|
|
|
name: Keepalive
|
|
|
|
# Only run cron on the colymba account
|
|
|
|
if: (github.event_name == 'schedule' && github.repository_owner == 'colymba') || (github.event_name != 'schedule')
|
|
|
|
runs-on: ubuntu-latest
|
2024-05-16 00:09:55 +02:00
|
|
|
permissions:
|
|
|
|
actions: write
|
2023-08-09 04:26:23 +02:00
|
|
|
steps:
|
|
|
|
- name: Keepalive
|
|
|
|
uses: silverstripe/gha-keepalive@v1
|