Skip to content

Commit

Permalink
Merge branch 'main' into feature/alt-variant-last-updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenFrankel authored May 24, 2024
2 parents cb5616c + 5e96b7c commit ca870a9
Show file tree
Hide file tree
Showing 28 changed files with 306 additions and 235 deletions.
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* @rwfeather @cjohnhanson
/_data/ @sbalnojan @afolson @tayloramurphy @pnadolny13
* @cjohnhanson
/_data/ @tayloramurphy @pnadolny13 @edgarrmondragon
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/new_plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 🚰 New Plugin
description: Request a new Plugin to Meltano Hub
title: "Add Plugin: <insert plugin name>"
labels: [valuestream/Hub]
assignees: [tayloramurphy, pnadolny13]
assignees: [edgarrmondragon, pnadolny13]

body:
- type: markdown
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
environment: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && 'production' || 'preview' }}
if: ${{ !github.event.pull_request.head.repo.fork }}
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6

- name: Set up Python 3.10
uses: actions/setup-python@v5
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
permissions:
id-token: write # This is required for requesting the JWT
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6
- name: Configure AWS credentials
uses: aws-actions/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-yaml-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
name: Lint YAML files
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6

- name: Get changed files in the docs folder
id: changed-files
uses: tj-actions/changed-files@v44.3.0
uses: tj-actions/changed-files@v44.4.0
with:
files: |
_data/**/*.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint_and_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6
- name: Use Node.js v16
uses: actions/setup-node@v4
with:
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6
- name: Use Node.js v16
uses: actions/setup-node@v4
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/metadata-extract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
airbyte_matrix: ${{ steps.setmatrix_airbyte.outputs.airbyte_matrix }}

steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6

- name: Install hub-utils
run: pipx install git+https://github.com/meltano/hub-utils.git
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
permissions:
id-token: write # This is required for requesting the JWT
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6

- name: Configure AWS credentials
uses: aws-actions/[email protected]
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
permissions:
id-token: write # This is required for requesting the JWT
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6

- name: Configure AWS credentials
uses: aws-actions/[email protected]
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
permissions:
id-token: write # This is required for requesting the JWT
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6

- name: Configure AWS credentials
uses: aws-actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/metadata-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
permissions:
id-token: write # This is required for requesting the JWT
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6

- name: Configure AWS credentials
uses: aws-actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin_definition_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/[email protected].4
uses: actions/[email protected].6

- name: Setup Python
uses: actions/setup-python@v5
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_dispatcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout the repository
uses: actions/[email protected].4
uses: actions/[email protected].6
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
repository: ${{ github.event.pull_request.head.repo.full_name }}

- name: Get changed files
id: changed_files
uses: tj-actions/changed-files@v44.3.0
uses: tj-actions/changed-files@v44.4.0
with:
sha: ${{ github.event.pull_request.head.sha }}
json: "true"
Expand All @@ -47,7 +47,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout the repository
uses: actions/[email protected].4
uses: actions/[email protected].6
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_meltano_add_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
matrix: ${{ steps.changed_plugins.outputs.all_changed_files }}
steps:
- name: Checkout the repository
uses: actions/[email protected].4
uses: actions/[email protected].6
with:
fetch-depth: 0

- name: Get changed plugins
id: changed_plugins
uses: tj-actions/changed-files@v44.3.0
uses: tj-actions/changed-files@v44.4.0
with:
files: _data/meltano/*/*/*.yml
matrix: true
Expand All @@ -35,7 +35,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout the repository
uses: actions/[email protected].4
uses: actions/[email protected].6

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
contents: read
issues: write
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].6

- name: Setup Python
uses: actions/setup-python@v5
Expand Down
6 changes: 2 additions & 4 deletions _data/default_variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ extractors:
tap-aha: airbyte
tap-airbyte-wrapper: meltanolabs
tap-aircall: ticketswap
tap-airtable: goes-funky
tap-airtable: tomasvotava
tap-alpha-vantage: airbyte
tap-amazon-ads-dsp: singer-io
tap-amazon-advertising: dbt-labs
Expand Down Expand Up @@ -90,7 +90,6 @@ extractors:
tap-cin7: hotgluexyz
tap-circle-ci: sisudata
tap-clarabridge: pathlight
tap-clickcast: datateer
tap-clickhouse: akurdyukov
tap-clickup: autoidm
tap-clientsuccess: antiny
Expand Down Expand Up @@ -212,7 +211,7 @@ extractors:
tap-gmail-csv: food-spotter
tap-gnews: airbyte
tap-gocardless: airbyte
tap-gohighlevel: hotgluexyz
tap-gohighlevel: meltanolabs
tap-gong: symon-ai
tap-google-analytics: meltanolabs
tap-google-directory: airbyte
Expand Down Expand Up @@ -265,7 +264,6 @@ extractors:
tap-kiotviet: chienazazaz
tap-klarna: airbyte
tap-klaviyo: meltanolabs
tap-krow: datateer
tap-kustomer: meltanolabs
tap-kwanko: uptilab2
tap-kyriba: airbyte
Expand Down
4 changes: 4 additions & 0 deletions _data/maintainers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1173,6 +1173,10 @@ tmonks:
label: Tom Monks
name: tmonks
url: https://github.com/tmonks
tomasvotava:
label: Tomas Votava
name: tomasvotava
url: https://github.com/tomasvotava
tomekzbrozek:
label: Tomek Zbrozek
name: tomekzbrozek
Expand Down
93 changes: 93 additions & 0 deletions _data/meltano/extractors/tap-airtable/tomasvotava.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
capabilities:
- about
- batch
- catalog
- discover
- schema-flattening
- state
- stream-maps
description: Cloud collaboration service
domain_url: https://airtable.com/api
executable: tap-airtable
keywords:
- meltano_sdk
label: Airtable
logo_url: /assets/logos/extractors/airtable.png
maintenance_status: active
name: tap-airtable
namespace: tap_airtable
next_steps: ''
pip_url: tap-airtable
quality: silver
repo: https://github.com/tomasvotava/tap-airtable
settings:
- description: Selected base ids (all if not specified)
kind: array
label: Base IDs
name: base_ids
- description: Compression format to use for batch files.
kind: options
label: Batch Config Encoding Compression
name: batch_config.encoding.compression
options:
- label: Gzip
value: gzip
- label: None
value: none
- description: Format to use for batch files.
kind: options
label: Batch Config Encoding Format
name: batch_config.encoding.format
options:
- label: Jsonl
value: jsonl
- label: Parquet
value: parquet
- description: Prefix to use when writing batch files.
kind: string
label: Batch Config Storage Prefix
name: batch_config.storage.prefix
- description: Root path to use when writing batch files.
kind: string
label: Batch Config Storage Root
name: batch_config.storage.root
- description: 'One or more LCID locale strings to produce localized output for: https://faker.readthedocs.io/en/master/#localization'
kind: array
label: Faker Config Locale
name: faker_config.locale
- description: 'Value to seed the Faker generator for deterministic output: https://faker.readthedocs.io/en/master/#seeding-the-generator'
kind: string
label: Faker Config Seed
name: faker_config.seed
- description: "'True' to enable schema flattening and automatically expand nested
properties."
kind: boolean
label: Flattening Enabled
name: flattening_enabled
- description: The max depth to flatten schemas.
kind: integer
label: Flattening Max Depth
name: flattening_max_depth
- description: User-defined config values to be used within map expressions.
kind: object
label: Stream Map Config
name: stream_map_config
- description: Config object for stream maps capability. For more information check
out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html).
kind: object
label: Stream Maps
name: stream_maps
- description: Mapping of table_id => custom_table_name
kind: object
label: Table Mapping
name: table_mapping
- description: The token to authenticate against Airtable API
kind: password
label: Token
name: token
sensitive: true
settings_group_validation:
- - token
settings_preamble: ''
usage: ''
variant: tomasvotava
2 changes: 1 addition & 1 deletion _data/meltano/extractors/tap-circle-ci/meltanolabs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ settings:
kind: string
label: User Agent
name: user_agent
value: tap-circle-ci/0.2.1 Singer tap for the CircleCI API.
value: tap-circle-ci/0.2.2 Singer tap for the CircleCI API.
settings_group_validation:
- - org_slug
- token
Expand Down
52 changes: 0 additions & 52 deletions _data/meltano/extractors/tap-clickcast/datateer.yml

This file was deleted.

Loading

0 comments on commit ca870a9

Please sign in to comment.