From e32ed80003ae0c83a65a97e28b05d58600abda87 Mon Sep 17 00:00:00 2001 From: Bryan Gerlach Date: Wed, 11 Mar 2026 00:15:15 -0500 Subject: [PATCH] get status from github api --- rdgenerator/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rdgenerator/views.py b/rdgenerator/views.py index 99df6fe..dc54685 100644 --- a/rdgenerator/views.py +++ b/rdgenerator/views.py @@ -310,7 +310,7 @@ def generator_view(request): 'Accept': 'application/vnd.github+json', 'Content-Type': 'application/json', 'Authorization': 'Bearer '+_settings.GHBEARER, - 'X-GitHub-Api-Version': '2022-11-28' + 'X-GitHub-Api-Version': '2026-03-10' } new_github_run = GithubRun( uuid=myuuid, @@ -472,7 +472,7 @@ def startgh(request): 'Accept': 'application/vnd.github+json', 'Content-Type': 'application/json', 'Authorization': 'Bearer '+_settings.GHBEARER, - 'X-GitHub-Api-Version': '2022-11-28' + 'X-GitHub-Api-Version': '2026-03-10' } response = requests.post(url, json=data, headers=headers) print(response)