ci(update-flake-lock): only run once a week

This commit is contained in:
Youwen Wu 2025-04-19 21:17:24 -07:00
parent 70bf4f88db
commit 830067a9e2
Signed by: youwen
GPG key ID: 865658ED1FE61EC3

View file

@ -2,7 +2,8 @@ name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: "0 0 * * *" # runs daily at 00:00
# Runs weekly at 00:00 UTC on Sunday
- cron: "0 0 * * 0"
jobs:
lockfile:
runs-on: ubuntu-latest