From ed09932f319176a9904af26b248289394563672b Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Tue, 18 Feb 2025 19:55:47 -0600 Subject: [PATCH] Add temporary github api logging --- src/platforms/github.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/platforms/github.ts b/src/platforms/github.ts index afb14efb..8bb89823 100644 --- a/src/platforms/github.ts +++ b/src/platforms/github.ts @@ -133,6 +133,8 @@ export const getGitHubPublicFork = async (): Promise => { }; export const getGitHubMeta = async (params: RepoParams) => { + console.log('getGitHubMeta', params); + const urlOwner = getGitHubUrlOwner(params); const urlRepo = getGitHubUrlRepo(params); const urlBranch = getGitHubUrlBranch(params);