Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

connector code freeze GHA workflow #33670

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/connector_code_freeze.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Connector Code freeze

on:
pull_request:
types:
- opened
- synchronize
- ready_for_review

jobs:
code-freeze-check:
name: Connector code freeze check

steps:
- name: Checkout Airbyte
uses: actions/checkout@v3
- name: Get changed files
uses: tj-actions/changed-files@v39
with:
files_yaml: |
connectors:
- 'airbyte-integration/connectors/**'
- '!**/*.md'
- name: Fail workflow if connector files was changed
if: steps.changes.outputs.connectors_any_changed == 'true'
run: echo "Connector code freeze is in effect. Please contact the current OC engineers if you want to merge this change." && exit 1
Loading