From 6358ef476b6c9a79e18cc66419ae817fd2923693 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Wed, 16 Apr 2025 12:24:53 -0700 Subject: [PATCH 1/2] ci: add connector-test-summary job --- .github/workflows/connector-tests.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/connector-tests.yml b/.github/workflows/connector-tests.yml index d07189f9f..823c15ec0 100644 --- a/.github/workflows/connector-tests.yml +++ b/.github/workflows/connector-tests.yml @@ -232,3 +232,16 @@ jobs: with: name: ${{matrix.connector}}-job-output path: airbyte/airbyte-ci/connectors/pipelines/pipeline_reports + + connectors_ci_summary: + # This job simply asserts that nothing failed in the matrix. + # This allows us to make this step required while the preceeding + # dynamic steps do not need to be individually reported if they + # are skipped. + name: Connectors Tests Check (Matrix Summary) + needs: [connectors_ci] + runs-on: ubuntu-22.04 + steps: + - name: Success + run: | + echo "If this job runs, it means the matrix job succeeded! 🙌" From b4d444017d69fe8e49465b27af1196eb935e9c83 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Wed, 16 Apr 2025 13:52:12 -0700 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/connector-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/connector-tests.yml b/.github/workflows/connector-tests.yml index 823c15ec0..b73e1a849 100644 --- a/.github/workflows/connector-tests.yml +++ b/.github/workflows/connector-tests.yml @@ -235,10 +235,10 @@ jobs: connectors_ci_summary: # This job simply asserts that nothing failed in the matrix. - # This allows us to make this step required while the preceeding + # This allows us to make this step required while the preceding # dynamic steps do not need to be individually reported if they # are skipped. - name: Connectors Tests Check (Matrix Summary) + name: Connector Tests Completion Check needs: [connectors_ci] runs-on: ubuntu-22.04 steps: