From 404856622ff3859bb121fa3776b4f6348336ecd7 Mon Sep 17 00:00:00 2001 From: Rajendra Reddy Date: Sun, 29 Mar 2026 16:37:45 +0000 Subject: [PATCH] Update .gitea/workflows/codeant.yml --- .gitea/workflows/codeant.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/codeant.yml b/.gitea/workflows/codeant.yml index d64a08a..7c91398 100644 --- a/.gitea/workflows/codeant.yml +++ b/.gitea/workflows/codeant.yml @@ -45,11 +45,14 @@ jobs: git fetch origin main - git checkout -b codeant-fullscan - - # 🔥 TOUCH ALL FILES (this is the key) - find . -type f -not -path "./.git/*" -exec touch {} + + git checkout -b codeant-fullscan + # 🔥 Modify ALL files (real change, not just timestamp) + find . -type f \ + -not -path "./.git/*" \ + -exec sh -c 'echo "" >> "$1"' _ {} \; + + git add . git commit -m "full repo scan"