-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 1.11 KB
/
cleanup.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Cleanup
on:
push:
branches:
- main
defaults:
run:
shell: bash
permissions:
contents: write
jobs:
clean-old-packages:
runs-on: ubuntu-latest
container: debian:bookworm
steps:
- name: Install dependencies
run: |
apt-get update && apt-get install --yes python3-debian git git-lfs
- uses: actions/checkout@v4
with:
lfs: true
token: ${{ secrets.PUSH_TOKEN }}
- name: Clean old packages
run: |
git config --global --add safe.directory '*'
find core -mindepth 1 -maxdepth 2 -type d | xargs -I '{}' ./scripts/clean-old-packages '{}' 4
find workstation -mindepth 1 -maxdepth 2 -type d | xargs -I '{}' ./scripts/clean-old-packages '{}' 4
git add .
git config --global user.email "securedrop@freedom.press"
git config --global user.name "sdcibot"
git diff-index --quiet HEAD || git commit -m "Removing old packages"
git push origin main