Skip to content

Commit 891709a

Browse files
committed
Change: adjust workflow-run GitHub script for model changes
Event is now an Enum and updated_at is a datetime value.
1 parent 6acf57d commit 891709a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/github/workflow-runs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ async def github_script(api: GitHubAsyncRESTApi, args: Namespace) -> int:
7878
str(run.id),
7979
run.html_url,
8080
run.head_branch,
81-
run.event,
81+
run.event.value,
8282
run.conclusion,
83-
run.updated_at,
83+
str(run.updated_at),
8484
run.actor.login,
8585
)
8686
count += 1

0 commit comments

Comments
 (0)