From 2449f8bb0b413043c90992f820627688ccd1115f Mon Sep 17 00:00:00 2001 From: parker-michel-vanta Date: Wed, 16 Jul 2025 10:37:01 -0400 Subject: [PATCH] format --- src/git-source-settings.ts | 2 +- src/input-helper.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/git-source-settings.ts b/src/git-source-settings.ts index 78cdc36..8a2ac0b 100644 --- a/src/git-source-settings.ts +++ b/src/git-source-settings.ts @@ -54,7 +54,7 @@ export interface IGitSourceSettings { */ shallowSince: string - /** + /** * Fetch tags, even if fetchDepth > 0 (default: false) */ fetchTags: boolean diff --git a/src/input-helper.ts b/src/input-helper.ts index 07174af..d33f2ba 100644 --- a/src/input-helper.ts +++ b/src/input-helper.ts @@ -116,7 +116,7 @@ export async function getInputs(): Promise { } result.shallowSince = core.getInput('shallow-since') core.debug(`shallow since = ${result.shallowSince}`) - + // Fetch tags result.fetchTags = (core.getInput('fetch-tags') || 'false').toUpperCase() === 'TRUE'