From bdd43acd0260a3f38d1e2573903ab278def547bd Mon Sep 17 00:00:00 2001 From: Santhosh Narayanaswamy Date: Thu, 18 Jul 2024 15:45:43 -0400 Subject: [PATCH] feat: Add created_at to workflow_run_jobs schema --- tap_github/repository_streams.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tap_github/repository_streams.py b/tap_github/repository_streams.py index de8371e8..d1c27a37 100644 --- a/tap_github/repository_streams.py +++ b/tap_github/repository_streams.py @@ -2047,6 +2047,7 @@ class WorkflowRunJobsStream(GitHubRestStream): th.Property("html_url", th.StringType), th.Property("status", th.StringType), th.Property("conclusion", th.StringType), + th.Property("created_at", th.DateTimeType), th.Property("started_at", th.DateTimeType), th.Property("completed_at", th.DateTimeType), th.Property("name", th.StringType),