Skip to content

Commit

Permalink
ci-connector-ops: split workflows(#21474)
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere authored and xiaohansong committed Jan 20, 2023
1 parent a85aef7 commit ed2780c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,28 +1,11 @@
name: Connector Ops CI
name: Connector Ops CI - Check review requirements

on:
workflow_dispatch:
pull_request:
paths:
- "airbyte-integrations/connectors/source-**"
pull_request_review:
jobs:
test-strictness-level:
name: "Check test strictness level"
runs-on: ubuntu-latest
steps:
- name: Checkout Airbyte
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install ci-connector-ops package
run: pip install --quiet -e ./tools/ci_connector_ops
- name: Check test strictness level
run: check-test-strictness-level
check-review-requirements:
name: "Check if a review is required from Connector teams"
runs-on: ubuntu-latest
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/sat_strictness_level.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Connector Ops CI - Check SAT strictness level

on:
pull_request:
paths:
- "airbyte-integrations/connectors/source-**"
jobs:
test-strictness-level:
name: "Check test strictness level"
runs-on: ubuntu-latest
steps:
- name: Checkout Airbyte
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install ci-connector-ops package
run: pip install --quiet -e ./tools/ci_connector_ops
- name: Check test strictness level
run: check-test-strictness-level

0 comments on commit ed2780c

Please sign in to comment.