1
0
mirror of synced 2025-12-23 11:57:55 -05:00

🎉 Source GitHub: Use CDK caching and convert PR-related streams to incremental (#7250)

* Source GitHub: Use CDK caching and convert PR-related streams to incremental

* Remove extra change

* Consolidate

* Address comments

* Fix integration test config

* Fix merge

* Update sample state

* Bump release version

* Bump version

* Address feedback

* Bump version

* Fix formatting
This commit is contained in:
Chris Wu
2022-01-06 14:50:15 -08:00
committed by GitHub
parent 678cfbe2cf
commit 5b6b48ca10
10 changed files with 82 additions and 51 deletions

View File

@@ -179,12 +179,12 @@ class SourceGithub(AbstractSource):
Organizations(**organization_args),
Projects(**repository_args_with_start_date),
PullRequestCommentReactions(**repository_args_with_start_date),
PullRequestStats(parent=pull_requests_stream, **repository_args),
PullRequestStats(parent=pull_requests_stream, **repository_args_with_start_date),
PullRequests(**repository_args_with_start_date),
Releases(**repository_args_with_start_date),
Repositories(**organization_args),
ReviewComments(**repository_args_with_start_date),
Reviews(parent=pull_requests_stream, **repository_args),
Reviews(parent=pull_requests_stream, **repository_args_with_start_date),
Stargazers(**repository_args_with_start_date),
Tags(**repository_args),
Teams(**organization_args),