From 46717d533ad97a0e7180699ba4c23ca4bdb448b9 Mon Sep 17 00:00:00 2001 From: sandipkatel Date: Fri, 24 May 2024 23:31:57 +0545 Subject: [PATCH] docs: added comment describing commitFile function --- src/app.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app.ts b/src/app.ts index c37bdf982..5e2607093 100644 --- a/src/app.ts +++ b/src/app.ts @@ -25,6 +25,7 @@ const execCmd = (cmd: string, args: string[] = []) => app.on('error', reject); }); +//ProfileSummaryCardsTemplate const commitFile = async () => { await execCmd('git', ['config', '--global', 'user.email', 'profile-summary-cards-bot@example.com']); await execCmd('git', ['config', '--global', 'user.name', 'profile-summary-cards[bot]']);