We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfbbf05 commit c61faafCopy full SHA for c61faaf
.github/workflows/hil.yml
@@ -4,8 +4,8 @@ on:
4
pull_request:
5
types: [opened, reopened, synchronize, labeled]
6
7
-# schedule:
8
-# - cron: '0 2 * * *'
+ schedule:
+ - cron: '0 2 * * *'
9
10
env:
11
MAX_CHUNKS: 15
@@ -16,7 +16,9 @@ concurrency:
16
17
jobs:
18
gen_chunks:
19
- if: contains(github.event.pull_request.labels.*.name, 'hil_test')
+ if: |
20
+ contains(github.event.pull_request.labels.*.name, 'hil_test') ||
21
+ github.event_name == 'schedule'
22
name: Generate Chunks matrix
23
runs-on: ubuntu-latest
24
outputs:
0 commit comments