55 lines
2.6 KiB
YAML
55 lines
2.6 KiB
YAML
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
|
|
if: github.event.pull_request.head.repo.fork != true
|
|
timeout-minutes: 22
|
|
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 refs/heads/${{ 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_CACHE_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'"
|