Skip to content

Commit

Permalink
fix: Remove misleading replication key from workflows and `workflow…
Browse files Browse the repository at this point in the history
…_runs` stream (#325)

Related:

- Closes #216
  • Loading branch information
edgarrmondragon authored Nov 6, 2024
1 parent 771b1f6 commit b33f844
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit b33f844

Please sign in to comment.