Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Remove misleading replication key from workflows and workflow_runs stream #325

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tap_github/repository_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -1937,7 +1937,7 @@ class WorkflowsStream(GitHubRestStream):
name = "workflows"
path = "/repos/{org}/{repo}/actions/workflows"
primary_keys: ClassVar[list[str]] = ["id"]
replication_key = "updated_at"
replication_key = None
parent_stream_type = RepositoryStream
ignore_parent_replication_key = True
state_partitioning_keys: ClassVar[list[str]] = ["repo", "org"]
Expand Down Expand Up @@ -1972,7 +1972,7 @@ class WorkflowRunsStream(GitHubRestStream):
name = "workflow_runs"
path = "/repos/{org}/{repo}/actions/runs"
primary_keys: ClassVar[list[str]] = ["id"]
replication_key = "updated_at"
replication_key = None
parent_stream_type = RepositoryStream
ignore_parent_replication_key = False
state_partitioning_keys: ClassVar[list[str]] = ["repo", "org"]
Expand Down