GridFieldBulkEditingTools/.github/workflows/keepalive.yml

18 lines
433 B
YAML

name: Keepalive
on:
# At 11:55 PM UTC, on day 20 of the month
schedule:
- cron: '55 23 20 * *'
workflow_dispatch:
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
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@v1