Upkeep - Cleanup old results #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upkeep - Cleanup old results | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
cleanup-results: | |
name: Cleanup Results | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: "results" | |
fetch-depth: 0 | |
- name: Delete old results | |
run: | | |
date=`date "+%Y-%m-%d" -d "3 months ago"` | |
echo $date | |
git ls-files | while read file | |
do | |
if [ "$(git log --since \"$date\" -- $file)" == "" ]; then | |
rm "$file" | |
fi | |
done | |
- name: Store results in git | |
run: | | |
git config user.name 'Workflow' | |
git config user.email '<>' | |
git add . | |
git commit -m "Results Cleanup" | |
git push |