mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
18 lines
433 B
YAML
18 lines
433 B
YAML
name: Keepalive
|
|
|
|
on:
|
|
# At 1:05 PM UTC, on day 22 of the month
|
|
schedule:
|
|
- cron: '5 13 22 * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
keepalive:
|
|
name: Keepalive
|
|
# Only run cron on the symbiote account
|
|
if: (github.event_name == 'schedule' && github.repository_owner == 'symbiote') || (github.event_name != 'schedule')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Keepalive
|
|
uses: silverstripe/gha-keepalive@v1
|