Fix module.csv generation in cron ci (#5586)

This commit is contained in:
Ashwin Naren
2025-03-05 20:20:04 -08:00
committed by GitHub
parent cc0a1ce9e2
commit 97853bf0f1

View File

@@ -101,8 +101,8 @@ jobs:
[ -f ./_data/whats_left.temp ] && cp ./_data/whats_left.temp ./_data/whats_left_lastrun.temp
cp ../whats_left.temp ./_data/whats_left.temp
rm ./_data/whats_left/modules.csv
echo -e "modules\n" > ./_data/whats_left/modules.csv
cat ./_data/whats_left.temp | grep "(entire module)" | cut -d ' ' -f 1 | sort >> ./_data/whats_left/modules.csv
git add -A
if git -c user.name="Github Actions" -c user.email="actions@github.com" commit -m "Update what is left results" --author="$GITHUB_ACTOR"; then
git push