Skip to content

Commit 4738ee9

Browse files
author
Eric Fu
authored
fix(ci): fix github workflow syntax error (risingwavelabs#8702)
1 parent 655d2bd commit 4738ee9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/connector-node-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Connector Node Integration tests
33
on:
44
push:
55
branches: [main]
6-
path: [java/**, proto/**]
6+
paths: [java/**, proto/**]
77
pull_request:
88
branches: [main]
99
paths: [java/**, proto/**]

.github/workflows/intergration_tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ on:
44
schedule:
55
# Currently we build docker images at 12:00 (UTC), so run this at 13:00
66
- cron: '0 13 * * *'
7-
push:
7+
push:
8+
branches: [main]
9+
paths: [integration_tests/**]
10+
pull_request:
811
branches: [main]
912
paths: [integration_tests/**]
1013

0 commit comments

Comments
 (0)