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"