Skip to content

Commit 25f61ac

Browse files
committed
workflow
1 parent 69709eb commit 25f61ac

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/my-master-ubuntu-22-arm-nightly.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: my-master-ubuntu-22-arm-nightly
22

33
on:
44
schedule:
5-
# 每天 UTC 时间 00:00 运行
6-
- cron: '0 0 * * *'
5+
# 每天运行
6+
- cron: "0 1 * * *"
7+
workflow_dispatch: ~
78
push:
89
branches: ["my-master"] # 仅在 my-master 分支触发
910

.github/workflows/my-master-ubuntu-22-nightly.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: my-master-ubuntu-22-nightly
22

33
on:
44
schedule:
5-
# 每天 UTC 时间 00:00 运行
6-
- cron: '0 0 * * *'
5+
# 每天运行
6+
- cron: "0 0 * * *"
7+
workflow_dispatch: ~
78
push:
89
branches: ["my-master"] # 仅在 my-master 分支触发
910

.github/workflows/my-sync-nightly.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Sync and Merge PHP-SRC
22

33
on:
44
schedule:
5-
# 每天 UTC 时间 00:00 (北京时间 08:00) 自动同步
6-
- cron: '0 0 * * *'
5+
# 每天自动同步
6+
- cron: "0 1 * * *"
7+
workflow_dispatch: ~
78
push:
89
branches: ["my-master"]
910
workflow_dispatch: # 允许手动触发

0 commit comments

Comments
 (0)