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

airbyte-ci: mitigate transient format failure #34042

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
10 changes: 8 additions & 2 deletions .github/workflows/format_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,18 @@ on:
airbyte-ci-binary-url:
description: "URL to airbyte-ci binary"
required: false
default: https://connectors.airbyte.com/airbyte-ci/releases/ubuntu/latest/airbyte-ci
# Pin to a specific version of airbyte-ci to avoid transient failures
# Mentioned in issue https://github.com/airbytehq/airbyte/issues/34041
default: https://connectors.airbyte.com/airbyte-ci/releases/ubuntu/2.14.1/airbyte-ci

push:
branches:
- master
pull_request:

jobs:
format-check:
runs-on: "ci-runner-connector-format-medium-dagger-0-9-5"
runs-on: "ci-runner-connector-format-medium-dagger-0-6-4"
# IMPORTANT: This name must match the require check name on the branch protection settings
name: "Check for formatting errors"
steps:
Expand Down Expand Up @@ -55,6 +58,9 @@ jobs:
github_token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }}
tailscale_auth_key: ${{ secrets.TAILSCALE_AUTH_KEY }}
subcommand: "format check all"
# Pin to a specific version of airbyte-ci to avoid transient failures
# Mentioned in issue https://github.com/airbytehq/airbyte/issues/34041
airbyte_ci_binary_url: https://connectors.airbyte.com/airbyte-ci/releases/ubuntu/2.14.1/airbyte-ci

- name: Run airbyte-ci format check [WORKFLOW DISPATCH]
id: airbyte_ci_format_check_all_manual
Expand Down
Loading