mirror of
https://github.com/status-im/airbyte-custom-connector.git
synced 2026-08-31 10:31:11 +00:00
29 lines
858 B
YAML
29 lines
858 B
YAML
documentationUrl: https://docs.airbyte.com/integrations/sources/github-search-count
|
|
connectionSpecification:
|
|
$schema: http://json-schema.org/draft-07/schema#
|
|
title: GitHub Search Count Source Spec
|
|
type: object
|
|
required:
|
|
- github_token
|
|
- search_queries
|
|
properties:
|
|
github_token:
|
|
type: string
|
|
description: "GitHub PAT for API authentication"
|
|
airbyte_secret: true
|
|
search_queries:
|
|
type: array
|
|
description: "List of GitHub code search queries to track"
|
|
items:
|
|
type: object
|
|
required:
|
|
- name
|
|
- query
|
|
properties:
|
|
name:
|
|
type: string
|
|
description: "Label for this query (e.g. nssa_core_toml)"
|
|
query:
|
|
type: string
|
|
description: "GitHub code search query string (e.g. \"nssa_core\" language:toml)"
|