From 93e24ba48c82dadbe6f47a773178a6b19956fd09 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Wed, 29 May 2024 23:25:46 +1000 Subject: [PATCH] Use temporary branch instead of default --- src/helpers/GitHub.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/GitHub.ts b/src/helpers/GitHub.ts index 9cffb7e..6286ae6 100644 --- a/src/helpers/GitHub.ts +++ b/src/helpers/GitHub.ts @@ -8,7 +8,7 @@ import git from 'simple-git'; const octokit = new Octokit({auth: (await TSClient()).octokit, timeZone: 'Australia/NSW', userAgent: 'Daggerbot-TS'}); export default class GitHub { - private static repositoryConfig = {owner: 'toast-ts', ref: 'HEAD'}; + private static repositoryConfig = {owner: 'toast-ts', ref: 'temp'}; public static async RemoteRepository() { const {data} = await octokit.repos.getCommit({repo: 'Daggerbot-TS', ...this.repositoryConfig}); return data;