1
0
mirror of synced 2025-12-30 03:02:21 -05:00

connector-insights: add code tracker (#40152)

This commit is contained in:
Augustin
2024-06-25 02:34:18 +02:00
committed by GitHub
parent ff7d573be0
commit 810b802fda
8 changed files with 211 additions and 8 deletions

View File

@@ -4,7 +4,9 @@ on:
schedule:
- cron: "0 0,12 * * *" # Run every 12 hours UTC
workflow_dispatch:
inputs:
rewrite:
default: false
jobs:
connectors_insights:
name: Connectors Insights generation
@@ -46,4 +48,4 @@ jobs:
run: echo "GOOGLE_APPLICATION_CREDENTIALS=$HOME/gcp-sa-key.json" >> $GITHUB_ENV
- name: Run connectors insights
run: |
poetry -C airbyte-ci/connectors/connectors_insights run connectors-insights generate --gcs-uri=gs://prod-airbyte-cloud-connector-metadata-service/connector_insights --connector-directory airbyte-integrations/connectors/ --concurrency 10
poetry -C airbyte-ci/connectors/connectors_insights run connectors-insights generate --gcs-uri=gs://prod-airbyte-cloud-connector-metadata-service/connector_insights --connector-directory airbyte-integrations/connectors/ --concurrency 10 {{ inputs.rewrite == true && '--rewrite' || ''}}