Skip to content

Commit b34b24d

Browse files
committed
[gha] Schedule daily run for ff-matrix, and opt out the run at each commit
We need to solve the pupeeter hanging issue before we can enable this.
1 parent aae1bf6 commit b34b24d

1 file changed

Lines changed: 13 additions & 9 deletions

File tree

.github/workflows/test-ff-matrix.yml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22
name: Feature-Format Tests
33
on:
44
workflow_dispatch:
5-
push:
6-
branches: [main]
7-
paths-ignore:
8-
- "news/**"
9-
- "src/resources/language/**"
10-
pull_request:
11-
branches: [main]
12-
paths-ignore:
13-
- "src/resources/language/**"
5+
schedule:
6+
# run daily at 1am UTC
7+
- cron: "0 1 * * *"
8+
# Deactivating run on commits for now
9+
## push:
10+
## branches: [main]
11+
## paths-ignore:
12+
## - "news/**"
13+
## - "src/resources/language/**"
14+
## pull_request:
15+
## branches: [main]
16+
## paths-ignore:
17+
## - "src/resources/language/**"
1418

1519
concurrency:
1620
# Use github.run_id on main branch

0 commit comments

Comments
 (0)