mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
18 lines
437 B
YAML
18 lines
437 B
YAML
|
name: Keepalive
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
# The 7th of every month at 12:50pm UTC
|
||
|
schedule:
|
||
|
- cron: '50 12 7 * *'
|
||
|
|
||
|
jobs:
|
||
|
keepalive:
|
||
|
name: Keepalive
|
||
|
# Only run cron on the symbiote account
|
||
|
if: (github.event_name == 'schedule' && startsWith(github.repository, 'symbiote/')) || (github.event_name != 'schedule')
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Keepalive
|
||
|
uses: silverstripe/gha-keepalive@v1
|