forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'airbytehq:master' into teradata_master
- Loading branch information
Showing
1,967 changed files
with
55,380 additions
and
24,026 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Connectors Version Increment Check | ||
|
||
concurrency: | ||
# This is the name of the concurrency group. It is used to prevent concurrent runs of the same workflow. | ||
# | ||
# - github.head_ref is only defined on PR runs, it makes sure that the concurrency group is unique for pull requests | ||
# ensuring that only one run per pull request is active at a time. | ||
# | ||
# - github.run_id is defined on all runs, it makes sure that the concurrency group is unique for workflow dispatches. | ||
# This allows us to run multiple workflow dispatches in parallel. | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
paths: | ||
- "airbyte-integrations/connectors/**/*" | ||
jobs: | ||
connectors_ci: | ||
name: Connectors Version Increment Check | ||
runs-on: connector-test-large | ||
timeout-minutes: 10 | ||
steps: | ||
- name: Checkout Airbyte | ||
uses: actions/checkout@v4 | ||
- name: Check PAT rate limits | ||
run: | | ||
./tools/bin/find_non_rate_limited_PAT \ | ||
${{ secrets.GH_PAT_BUILD_RUNNER_OSS }} \ | ||
${{ secrets.GH_PAT_BUILD_RUNNER_BACKUP }} | ||
- name: Fetch last commit id from remote branch [PULL REQUESTS] | ||
if: github.event_name == 'pull_request' | ||
id: fetch_last_commit_id_pr | ||
run: echo "commit_id=$(git ls-remote --heads origin ${{ github.head_ref }} | cut -f 1)" >> $GITHUB_OUTPUT | ||
- name: Test connectors [PULL REQUESTS] | ||
if: github.event_name == 'pull_request' | ||
uses: ./.github/actions/run-airbyte-ci | ||
with: | ||
context: "pull_request" | ||
dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_2 }} | ||
docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} | ||
docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} | ||
sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} | ||
git_branch: ${{ github.head_ref }} | ||
git_revision: ${{ steps.fetch_last_commit_id_pr.outputs.commit_id }} | ||
github_token: ${{ env.PAT }} | ||
s3_build_cache_access_key_id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }} | ||
s3_build_cache_secret_key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }} | ||
subcommand: "connectors --modified test --only-step=version_inc_check --global-status-check-context='Version increment check for Java connectors' --global-status-check-description='Checking if java connectors modified in this PR got their version bumped'" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output | ||
airbyte-ci/connectors/pipelines/tests/test_changelog/result_files | ||
airbyte-integrations/bases/connector-acceptance-test/unit_tests/data/docs |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Code of conduct | ||
|
||
View in [docs.airbyte.io](https://docs.airbyte.com/project-overview/code-of-conduct) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Contributing | ||
|
||
View on [docs.airbyte.io](https://docs.airbyte.io/contributing-to-airbyte) |
Oops, something went wrong.