Skip to content

Commit ed8cabe

Browse files
authored
Merge pull request #8320 from nicoddemus/change-update-plugins-cron
Update plugin-list every Sunday instead of everyday
2 parents 375e951 + e3c0fd3 commit ed8cabe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/update-plugin-list.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Update Plugin List
22

33
on:
44
schedule:
5-
# Run daily at midnight.
6-
- cron: '0 0 * * *'
5+
# At 00:00 on Sunday.
6+
# https://crontab.guru
7+
- cron: '0 0 * * 0'
78
workflow_dispatch:
89

910
jobs:

0 commit comments

Comments
 (0)