22 lines
486 B
YAML
Raw Normal View History

2023-08-09 14:26:23 +12:00
name: Keepalive
on:
2024-05-17 13:52:29 +12:00
# At 3:15 AM UTC, on day 16 of the month
2023-08-09 14:26:23 +12:00
schedule:
2024-05-17 13:52:29 +12:00
- cron: '15 3 16 * *'
2023-08-09 14:26:23 +12:00
workflow_dispatch:
2024-05-16 10:09:55 +12:00
permissions: {}
2023-08-09 14:26:23 +12: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 10:09:55 +12:00
permissions:
actions: write
2023-08-09 14:26:23 +12:00
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@v1