Skip to content

Commit

Permalink
Update check_cron.yaml
Browse files Browse the repository at this point in the history
改成每3天早8点运行一次
  • Loading branch information
cmliu authored Jul 30, 2024
1 parent 296e101 commit 80b4579
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Execute SSH Commands
on:
workflow_dispatch: # 手动触发工作流
schedule:
- cron: "0 0,12 * * *" # 每天早晚8点各运行一次
- cron: "0 0 */3 * *" # 每3天早8点运行一次

jobs:
execute-commands:
Expand Down Expand Up @@ -35,4 +35,4 @@ jobs:
chmod +x sshpass.sh
- name: Execute SSH Commands
run: ./sshpass.sh
run: ./sshpass.sh

0 comments on commit 80b4579

Please sign in to comment.