From ead8466decea46f7f1b575a87cb9f453d0a8f32f Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 23 Oct 2024 12:40:41 +0100 Subject: [PATCH] test --- .github/fetch_icons/index.js | 2 +- scripts/utils/checkGit.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/fetch_icons/index.js b/.github/fetch_icons/index.js index 61164312..0094f606 100644 --- a/.github/fetch_icons/index.js +++ b/.github/fetch_icons/index.js @@ -39,7 +39,7 @@ try { } console.log("Files changed", filesChanged); - core.setOutput("files_changed", filesChanged); + core.setOutput("files_changed", false); //TODO: Luke change this } catch (error) { core.setFailed(error.message); } diff --git a/scripts/utils/checkGit.ts b/scripts/utils/checkGit.ts index 3545354e..37589302 100644 --- a/scripts/utils/checkGit.ts +++ b/scripts/utils/checkGit.ts @@ -5,6 +5,7 @@ import { execSync } from "child_process"; * @returns string[] - List of files that have changed */ const getAllChangedFiles = (): string[] => { + console.log("git diff HEAD"); const diffOutput = execSync(`git diff HEAD --name-only`).toString(); if (diffOutput != "") { console.log("Files changed:", diffOutput);