Skip to content

Commit 8a96df1

Browse files
committed
Add weekly schedule triggers for test workflows
1 parent 9ab4dea commit 8a96df1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/test-publish.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Test Publish Action
33
on:
44
push:
55
branches: [main]
6+
schedule:
7+
- cron: '0 0 * * 1' # Weekly on Monday at midnight UTC
68
workflow_dispatch:
79

810
permissions:

.github/workflows/test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
push:
77
branches: [main, master]
88
pull_request:
9+
schedule:
10+
- cron: '0 0 * * 0' # Weekly on Sunday at midnight UTC
911
workflow_dispatch:
1012
inputs:
1113
version:

0 commit comments

Comments
 (0)