Skip to content

Commit 6358ef4

Browse files
authored
ci: add connector-test-summary job
1 parent bf998bd commit 6358ef4

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/connector-tests.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,3 +232,16 @@ jobs:
232232
with:
233233
name: ${{matrix.connector}}-job-output
234234
path: airbyte/airbyte-ci/connectors/pipelines/pipeline_reports
235+
236+
connectors_ci_summary:
237+
# This job simply asserts that nothing failed in the matrix.
238+
# This allows us to make this step required while the preceeding
239+
# dynamic steps do not need to be individually reported if they
240+
# are skipped.
241+
name: Connectors Tests Check (Matrix Summary)
242+
needs: [connectors_ci]
243+
runs-on: ubuntu-22.04
244+
steps:
245+
- name: Success
246+
run: |
247+
echo "If this job runs, it means the matrix job succeeded! 🙌"

0 commit comments

Comments
 (0)