Skip to content

Commit 77dbfd3

Browse files
committed
CI: add 2 more triggers
The schedule trigger will run CI everyday to make sure we catch any breakage caused by external reasons. The workflow_dispatch one is so that the repo owner can launch CI jobs manually.
1 parent 296505b commit 77dbfd3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build+test+deploy.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: CI
22

33
on:
44
pull_request:
5+
workflow_dispatch:
6+
7+
# to execute once a day (more info see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule )
8+
schedule:
9+
- cron: '0 0 * * *'
10+
511
push:
612
tags:
713
- 'v*'

0 commit comments

Comments
 (0)