silverstripe-behat-extension/.github/workflows/keepalive.yml

22 lines
494 B
YAML
Raw Normal View History

2022-07-05 12:17:14 +02:00
name: Keepalive
on:
2024-05-20 02:51:17 +02:00
# At 5:25 AM UTC, on day 6 of the month
2022-07-05 12:17:14 +02:00
schedule:
2024-05-20 02:51:17 +02:00
- cron: '25 5 6 * *'
workflow_dispatch:
permissions: {}
2022-07-05 12:17:14 +02:00
jobs:
keepalive:
name: Keepalive
# Only run cron on the silverstripe account
2022-07-31 23:42:18 +02:00
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
2022-07-05 12:17:14 +02:00
runs-on: ubuntu-latest
2024-05-20 02:51:17 +02:00
permissions:
actions: write
2022-07-05 12:17:14 +02:00
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@v1