Skip to content

Commit

Permalink
metadata updates
Browse files Browse the repository at this point in the history
  • Loading branch information
TrishGillett committed Sep 20, 2024
1 parent ac09b06 commit e72085a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 9 additions & 2 deletions meltano.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,15 @@ plugins:
kind: array
- name: user_ids
kind: array
- name: milestones
kind: object
- name: milestones.state
kind: options
options:
- label: Open
value: open
- label: Closed
value: closed
- label: All
value: all
- name: start_date
kind: date_iso8601
value: '2010-01-01T00:00:00Z'
Expand Down
3 changes: 3 additions & 0 deletions tap_github/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,11 @@ def logger(cls) -> logging.Logger:
"Configures which states are of interest. "
"Must be one of [open, closed, all], defaults to open."
),
default="open",
allowed_values=["open", "closed", "all"],
),
),
descriptions="Setting specific to the 'milestones' stream.",
),
th.Property("start_date", th.DateTimeType),
th.Property("stream_maps", th.ObjectType()),
Expand Down

0 comments on commit e72085a

Please sign in to comment.