diff --git a/.github/workflows/connector-node-integration.yml b/.github/workflows/connector-node-integration.yml index 1b0a429006e2..dce7651cadbb 100644 --- a/.github/workflows/connector-node-integration.yml +++ b/.github/workflows/connector-node-integration.yml @@ -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/**] diff --git a/.github/workflows/intergration_tests.yml b/.github/workflows/intergration_tests.yml index a614fc6e4673..033425bbb9d5 100644 --- a/.github/workflows/intergration_tests.yml +++ b/.github/workflows/intergration_tests.yml @@ -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/**]