summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/update-inputs.yaml2
-rw-r--r--.github/workflows/update-nixpkgs.yaml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/update-inputs.yaml b/.github/workflows/update-inputs.yaml
index 037c767..745e60b 100644
--- a/.github/workflows/update-inputs.yaml
+++ b/.github/workflows/update-inputs.yaml
@@ -2,7 +2,7 @@ name: Update all flake inputs
on:
schedule:
- # run every saturday
+ # run every saturday at 0:00 utc
- cron: "0 0 * * 6"
workflow_dispatch:
diff --git a/.github/workflows/update-nixpkgs.yaml b/.github/workflows/update-nixpkgs.yaml
index ad02bc7..8c3cd61 100644
--- a/.github/workflows/update-nixpkgs.yaml
+++ b/.github/workflows/update-nixpkgs.yaml
@@ -2,8 +2,8 @@ name: Update nixpkgs flake inputs
on:
schedule:
- # run daily at 0:00 utc
- - cron: "0 0 * * *"
+ # run every day besides saturday at 0:00 utc
+ - cron: "0 0 * * 1,2,3,4,5"
workflow_dispatch:
jobs: