Skip to content

Commit 6a44f70

Browse files
committed
revert formatting
1 parent c985551 commit 6a44f70

File tree

6 files changed

+189
-177
lines changed

6 files changed

+189
-177
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: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ jobs:
2727
(github.event_name == 'push' && github.ref == 'refs/heads/main')
2828
strategy:
2929
matrix:
30-
python-version: ["3.10", "3.11", "3.12", "3.13"]
30+
python-version: [
31+
"3.10",
32+
"3.11",
33+
"3.12",
34+
"3.13",
35+
]
3136
os: [
3237
Ubuntu,
3338
# Windows, # For now, we don't include Windows in the test matrix.

.github/workflows/test-command.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,12 @@ jobs:
5050
needs: [start-workflow]
5151
strategy:
5252
matrix:
53-
python-version: ["3.10", "3.11", "3.12", "3.13"]
53+
python-version: [
54+
"3.10",
55+
"3.11",
56+
"3.12",
57+
"3.13",
58+
]
5459
os: [
5560
Ubuntu,
5661
# 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)