require extra review for breaking change messages #821
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Connector Ops CI - Pipeline Unit Test | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
paths: | |
- airbyte-ci/** | |
jobs: | |
run-airbyte-ci-tests: | |
name: Run Airbyte CI tests | |
runs-on: "conn-prod-xlarge-runner" | |
steps: | |
- name: Checkout Airbyte | |
uses: actions/checkout@v3 | |
- name: Run airbyte-ci/connectors/pipelines tests | |
id: run-airbyte-ci-connectors-pipelines-tests | |
uses: ./.github/actions/run-dagger-pipeline | |
with: | |
context: "pull_request" | |
docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} | |
gcs_credentials: ${{ secrets.METADATA_SERVICE_PROD_GCS_CREDENTIALS }} | |
sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} | |
github_token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }} | |
subcommand: "test airbyte-ci/connectors/pipelines" | |
- name: Run airbyte-ci/connectors/base_images tests | |
id: run-airbyte-ci-connectors-base-images-tests | |
uses: ./.github/actions/run-dagger-pipeline | |
with: | |
context: "pull_request" | |
docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} | |
gcs_credentials: ${{ secrets.METADATA_SERVICE_PROD_GCS_CREDENTIALS }} | |
sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} | |
github_token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }} | |
subcommand: "test airbyte-ci/connectors/base_images" |