Skip to content

Commit 42e2d7f

Browse files
style: apply formatting fixes from format-fix command
- Auto-format YAML and Markdown files per project standards - No functional changes, only formatting consistency Co-Authored-By: AJ Steers <[email protected]>
1 parent 8c84b6d commit 42e2d7f

File tree

5 files changed

+176
-183
lines changed

5 files changed

+176
-183
lines changed

.github/actions/check-docker-tag/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: 'Check Docker Tag Exists'
2-
description: 'Check if a Docker tag exists on DockerHub to prevent overwrites'
1+
name: "Check Docker Tag Exists"
2+
description: "Check if a Docker tag exists on DockerHub to prevent overwrites"
33
inputs:
44
image_name:
5-
description: 'Docker image name (e.g. airbyte/source-declarative-manifest)'
5+
description: "Docker image name (e.g. airbyte/source-declarative-manifest)"
66
required: true
77
tag:
8-
description: 'Docker tag to check'
8+
description: "Docker tag to check"
99
required: true
1010
runs:
1111
using: "composite"

.github/workflows/pytest_matrix.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,7 @@ jobs:
2727
(github.event_name == 'push' && github.ref == 'refs/heads/main')
2828
strategy:
2929
matrix:
30-
python-version: [
31-
"3.10",
32-
"3.11",
33-
"3.12",
34-
"3.13",
35-
]
30+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3631
os: [
3732
Ubuntu,
3833
# Windows, # For now, we don't include Windows in the test matrix.

.github/workflows/test-command.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,7 @@ jobs:
5050
needs: [start-workflow]
5151
strategy:
5252
matrix:
53-
python-version: [
54-
"3.10",
55-
"3.11",
56-
"3.12",
57-
"3.13",
58-
]
53+
python-version: ["3.10", "3.11", "3.12", "3.13"]
5954
os: [
6055
Ubuntu,
6156
# Windows, # For now, we don't include Windows in the test matrix.

airbyte_cdk/manifest_migrations/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This directory contains the logic and registry for manifest migrations in the Ai
2121
3. **Register the Migration:**
2222
- Open `migrations/registry.yaml`.
2323
- Add an entry under the appropriate version, or create a new version section if needed.
24-
- Version can be: "*", "==6.48.3", "~=1.2", ">=1.0.0,<2.0.0", "6.48.3"
24+
- Version can be: "\*", "==6.48.3", "~=1.2", ">=1.0.0,<2.0.0", "6.48.3"
2525
- Each migration entry should include:
2626
- `name`: The filename (without `.py`)
2727
- `order`: The order in which this migration should be applied for the version

0 commit comments

Comments
 (0)