Skip to content

Commit c61faaf

Browse files
committed
hil.yml: Enable the workflow on scheduled event.
Signed-off-by: Abdelatif Guettouche <[email protected]>
1 parent bfbbf05 commit c61faaf

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Diff for: .github/workflows/hil.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
pull_request:
55
types: [opened, reopened, synchronize, labeled]
66

7-
# schedule:
8-
# - cron: '0 2 * * *'
7+
schedule:
8+
- cron: '0 2 * * *'
99

1010
env:
1111
MAX_CHUNKS: 15
@@ -16,7 +16,9 @@ concurrency:
1616

1717
jobs:
1818
gen_chunks:
19-
if: contains(github.event.pull_request.labels.*.name, 'hil_test')
19+
if: |
20+
contains(github.event.pull_request.labels.*.name, 'hil_test') ||
21+
github.event_name == 'schedule'
2022
name: Generate Chunks matrix
2123
runs-on: ubuntu-latest
2224
outputs:

0 commit comments

Comments
 (0)