diff --git a/.github/workflows/connector_integration_tests.yml b/.github/workflows/connector_integration_tests.yml new file mode 100644 index 000000000000..c8d59d0fff3f --- /dev/null +++ b/.github/workflows/connector_integration_tests.yml @@ -0,0 +1,18 @@ +name: Connector Integration Tests + +on: + schedule: + # 5pm UTC is 10am PDT. + - cron: '0 17 * * *' + +jobs: + launch_integration_tests: + runs-on: ubuntu-latest + if: github.ref == 'refs/heads/master' + steps: + - name: Checkout Airbyte + uses: actions/checkout@v2 + - name: Launch Integration Tests + run: ./tools/bin/ci_integration_workflow_launcher.sh + env: + GITHUB_TOKEN: ${{ secrets.SLASH_COMMAND_PAT }} diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 909240a91892..92d164ff3844 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -2,21 +2,10 @@ name: Airbyte CI on: schedule: - - cron: '0 */6 * * *' + - cron: '0 */1 * * *' push: jobs: - launch_integration_tests: - runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' - steps: - - name: Checkout Airbyte - uses: actions/checkout@v2 - - name: Launch Integration Tests - run: ./tools/bin/ci_integration_workflow_launcher.sh - env: - GITHUB_TOKEN: ${{ secrets.SLASH_COMMAND_PAT }} - ## Gradle Build # In case of self-hosted EC2 errors, remove the `start-build-runner` block. start-build-runner: