summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-10-20 16:15:00 -0400
committerseth <[email protected]>2023-10-20 16:15:05 -0400
commitd8e164fde8b48b13b1894e5776796f75086d3723 (patch)
treeed47fc646250778614936c2f63ce3b3ae8b09077
parentf2b81d5933b143e6dc88408aad7b1ad1066afa2f (diff)
actions: update mods weekly instead of daily
-rw-r--r--.github/workflows/update-mods.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/update-mods.yml b/.github/workflows/update-mods.yml
index 03c3df4..cca46ee 100644
--- a/.github/workflows/update-mods.yml
+++ b/.github/workflows/update-mods.yml
@@ -2,16 +2,17 @@ name: Update mods
on:
schedule:
- # run daily at 0:00 utc
- - cron: "0 0 * * *"
+ # run on saturdays at 0:00 utc
+ - cron: "0 0 * * 6"
workflow_dispatch:
-permissions:
- contents: write
-
jobs:
update-mods:
runs-on: ubuntu-latest
+
+ permissions:
+ contents: write
+
steps:
- uses: actions/[email protected]
- uses: cachix/install-nix-action@v20