mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
18 lines
439 B
YAML
18 lines
439 B
YAML
name: Keepalive
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
# The 8th of every month at 4:50pm UTC
|
|
schedule:
|
|
- cron: '50 16 8 * *'
|
|
|
|
jobs:
|
|
keepalive:
|
|
name: Keepalive
|
|
# Only run cron on the silverstripe account
|
|
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Keepalive
|
|
uses: silverstripe/gha-keepalive@v1
|