Skip to content

Commit b33f844

Browse files
fix: Remove misleading replication key from workflows and workflow_runs stream (#325)
Related: - Closes #216
1 parent 771b1f6 commit b33f844

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tap_github/repository_streams.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1937,7 +1937,7 @@ class WorkflowsStream(GitHubRestStream):
19371937
name = "workflows"
19381938
path = "/repos/{org}/{repo}/actions/workflows"
19391939
primary_keys: ClassVar[list[str]] = ["id"]
1940-
replication_key = "updated_at"
1940+
replication_key = None
19411941
parent_stream_type = RepositoryStream
19421942
ignore_parent_replication_key = True
19431943
state_partitioning_keys: ClassVar[list[str]] = ["repo", "org"]
@@ -1972,7 +1972,7 @@ class WorkflowRunsStream(GitHubRestStream):
19721972
name = "workflow_runs"
19731973
path = "/repos/{org}/{repo}/actions/runs"
19741974
primary_keys: ClassVar[list[str]] = ["id"]
1975-
replication_key = "updated_at"
1975+
replication_key = None
19761976
parent_stream_type = RepositoryStream
19771977
ignore_parent_replication_key = False
19781978
state_partitioning_keys: ClassVar[list[str]] = ["repo", "org"]

0 commit comments

Comments
 (0)