Skip to content

Commit

Permalink
fix(ci): fix github workflow syntax error (#8702)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuyufjh committed Mar 22, 2023
1 parent 655d2bd commit 4738ee9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/connector-node-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Connector Node Integration tests
on:
push:
branches: [main]
path: [java/**, proto/**]
paths: [java/**, proto/**]
pull_request:
branches: [main]
paths: [java/**, proto/**]
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/intergration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ on:
schedule:
# Currently we build docker images at 12:00 (UTC), so run this at 13:00
- cron: '0 13 * * *'
push:
push:
branches: [main]
paths: [integration_tests/**]
pull_request:
branches: [main]
paths: [integration_tests/**]

Expand Down

0 comments on commit 4738ee9

Please sign in to comment.