We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf998bd commit 6358ef4Copy full SHA for 6358ef4
.github/workflows/connector-tests.yml
@@ -232,3 +232,16 @@ jobs:
232
with:
233
name: ${{matrix.connector}}-job-output
234
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