Skip to content

Commit ac0edb5

Browse files
committed
test trigger it every 5 mins
1 parent 3a51335 commit ac0edb5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build-test-tensorrt-linux.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Build and Test Torch-TensorRT on Linux with Future TensorRT Versions
33
on:
44
workflow_dispatch:
55
schedule:
6-
- cron: '0 0 * * 0' # Runs at 00:00 UTC every Sunday (minute hour day-of-month month-of-year day-of-week)
6+
# - cron: '0 0 * * 0' # Runs at 00:00 UTC every Sunday (minute hour day-of-month month-of-year day-of-week)
7+
- cron: '*/5 * * * *' # Runs every 5 minutes
78

89
permissions:
910
id-token: write

.github/workflows/build-test-tensorrt-windows.yml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Build and Test Torch-TensorRT on Windows with Future TensorRT Versions
22

33
on:
44
workflow_dispatch:
5+
schedule:
6+
# - cron: '0 0 * * 0' # Runs at 00:00 UTC every Sunday (minute hour day-of-month month-of-year day-of-week)
7+
- cron: '*/5 * * * *' # Runs every 5 minutes
58

69
permissions:
710
id-token: write

0 commit comments

Comments
 (0)