Skip to content

Commit

Permalink
Run alpine repo sync less frequently
Browse files Browse the repository at this point in the history
Running this every day mostly results in a lot of superfluous noise in commit logs for marginally more up-to-date repos.
  • Loading branch information
tbodt authored Oct 31, 2024
1 parent ac5bc91 commit 668941d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-alpine-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Update Repo"
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
- cron: "0 0 * * 6"

jobs:
update:
Expand Down Expand Up @@ -38,4 +38,4 @@ jobs:
continue-on-error: true
- name: Push
if: ${{ steps.commit.outcome == 'success' }}
run: git push
run: git push

0 comments on commit 668941d

Please sign in to comment.