Skip to content

Commit

Permalink
Source Gridly: add icon and make grid_id parameter required (#20048)
Browse files Browse the repository at this point in the history
* Add source-gridly icon

* source-gridly mark grid_id as required field

* Update acceptance-test-config.yml

* Update acceptance-test-config.yml

Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com>
  • Loading branch information
hntan and marcosmarxm committed Dec 8, 2022
1 parent 9c2a45f commit d64c9b6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions airbyte-config/init/src/main/resources/icons/gridly.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -546,8 +546,9 @@
- name: Gridly
sourceDefinitionId: 6cbea164-3237-433b-9abb-36d384ee4cbf
dockerRepository: airbyte/source-gridly
dockerImageTag: 0.1.0
dockerImageTag: 0.1.1
documentationUrl: https://docs.airbyte.com/integrations/sources/gridly
icon: gridly.svg
sourceType: api
releaseStage: alpha
- name: GitHub
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4548,7 +4548,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-gridly:0.1.0"
- dockerImage: "airbyte/source-gridly:0.1.1"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/sources/gridly"
connectionSpecification:
Expand All @@ -4557,6 +4557,7 @@
type: "object"
required:
- "api_key"
- "grid_id"
properties:
api_key:
type: "string"
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-gridly/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_gridly ./source_gridly
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.name=airbyte/source-gridly
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ connector_image: airbyte/source-gridly:dev
tests:
spec:
- spec_path: "source_gridly/spec.yaml"
backward_compatibility_tests_config:
disable_for_version: "0.1.0"
connection:
- config_path: "secrets/config.json"
status: "succeed"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ connectionSpecification:
type: object
required:
- api_key
- grid_id
properties:
api_key:
type: string
Expand Down

0 comments on commit d64c9b6

Please sign in to comment.