This is an automated email from the ASF dual-hosted git repository. hong pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-connector-aws.git
commit 8ddcda42d014c0fe7c9c2bef7a02c7efafe9b983 Author: Hong Liang Teoh <lian...@amazon.com> AuthorDate: Mon Oct 2 10:05:24 2023 +0100 [hotfix][ci] Set AWS end-to-end tests to run on all push main branch --- .github/workflows/common.yml | 7 +------ .github/workflows/nightly.yml | 1 - 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml index e087cf4..2b7447d 100644 --- a/.github/workflows/common.yml +++ b/.github/workflows/common.yml @@ -41,11 +41,6 @@ on: required: false type: number default: 50 - run_aws_end_to_end_test: - description: "Whether to run the AWS end to end tests, requiring AWS credentials." - required: false - type: boolean - default: false jobs: compile_and_test: @@ -120,7 +115,7 @@ jobs: mvn clean - name: Run AWS e2e tests - if: ${{ inputs.run_aws_end_to_end_test }} + if: ${{ github.event_name == 'push' }} run: | set -o pipefail diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 2f4e365..7084a92 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -31,4 +31,3 @@ jobs: flink_version: ${{ matrix.flink }} flink_url: https://s3.amazonaws.com/flink-nightly/flink-${{ matrix.flink }}-bin-scala_2.12.tgz cache_flink_binary: false - run_aws_end_to_end_test: true