blob: 13147a0ca38e81c46fd2e6a9fc689f9c2624c1d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
name: cron
on:
schedule:
- cron: '17 3 * * *' # every day at 03:17 UTC
jobs:
lifecycle:
if: github.event.schedule == '17 3 * * *'
uses: ./.github/workflows/lifecycle.yml
|