mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
35 lines
884 B
YAML
35 lines
884 B
YAML
name: GitHub Pages Cleanup
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: gh-pages
|
|
|
|
- name: Delete directories older than 1 year
|
|
run: |
|
|
for dir in $(find . -mindepth 1 -maxdepth 2 -type d -not -path '*/\.*'); do
|
|
if ! git log -1 --since="1 year ago" -- "$dir" | grep -q .; then
|
|
echo "Deleting $dir"
|
|
rm -rf "$dir"
|
|
fi
|
|
done
|
|
|
|
- name: Commit and push
|
|
run: |
|
|
git config --global user.name 'GitHub Pages Cleanup'
|
|
git config --global user.email 'actions@stremio.com'
|
|
git add -A
|
|
git diff --cached --quiet || git commit -m "cleanup"
|
|
git push origin gh-pages
|