Skip to content

Commit 0b93011

Browse files
authored
chore: Schedule TICS (#187)
This pull request introduces a small enhancement to the GitHub Actions workflow configuration. It adds a scheduled cron job to trigger the `TICS run self-hosted test` workflow every Saturday at 2:00 AM UTC. * [`.github/workflows/tics_run_sh_ghaction_test.yml`](diffhunk://#diff-594936f70c4be3041fe643be75996fd4d5d1c50675521239e0d7811b85790b90R4-R5): Added a `schedule` block with a cron expression to automate the workflow execution weekly.
1 parent 04f2402 commit 0b93011

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/tics_run_sh_ghaction_test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: TICS run self-hosted test (github-action)
22

33
on:
4+
schedule:
5+
- cron: "0 2 * * 6" # Every Saturday 2:00 AM UTC
46
workflow_dispatch: # Allows manual triggering
57

68
jobs:

0 commit comments

Comments
 (0)