Skip to content

Commit 82ad1d3

Browse files
committed
event
1 parent 06a00db commit 82ad1d3

2 files changed

Lines changed: 6 additions & 4 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
@@ -1,8 +1,9 @@
11
name: my-master-ubuntu-22-arm-nightly
22

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

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

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

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

0 commit comments

Comments
 (0)