-
Notifications
You must be signed in to change notification settings - Fork 0
92 lines (73 loc) · 2.25 KB
/
cleanup.yaml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
name: Cleanup
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
defaults:
run:
shell: bash
permissions:
contents: read
packages: write
jobs:
matrix:
name: Matrix
runs-on: ${{ matrix.os }}
timeout-minutes: 30
continue-on-error: false
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
steps:
- id: checkout_repository
name: Checkout repository
uses: actions/checkout@v4
- id: repository_name
name: Record repository name
run: |
echo "REPOSITORY_NAME=$(basename ${{ github.repository }})" >> "$GITHUB_OUTPUT"
- id: generate_matrix
name: Generating a matrix of container names
run: |
echo "Generating matrix of container names..."
CONTAINER_NAMES=$(find nix/oci -mindepth 1 -maxdepth 1 -type d ! -name "_template" ! -name "_disabled*" -printf "%f\n" | jq -R -s -c 'split("\n")[:-1]')
echo "${CONTAINER_NAMES}" | jq .
echo "CONTAINER_MATRIX=${CONTAINER_NAMES}" >> "$GITHUB_OUTPUT"
outputs:
repository_name: ${{ steps.repository_name.outputs.REPOSITORY_NAME }}
container_matrix: ${{ steps.generate_matrix.outputs.CONTAINER_MATRIX }}
cleanup:
name: Cleanup Packages
runs-on: ${{ matrix.os }}
timeout-minutes: 30
continue-on-error: false
needs: matrix
strategy:
fail-fast: false
matrix:
container: ${{ fromJson(needs.matrix.outputs.container_matrix) }}
os:
- ubuntu-latest
steps:
- name: Prune all untagged images
uses: vlaurin/[email protected]
with:
token: ${{ secrets.PAT_PACKAGES }}
organization: salt-labs
container: ${{ needs.matrix.outputs.repository_name }}/${{ matrix.container }}
prune-untagged: true
dry-run: false
- name: Prune old tagged images
uses: vlaurin/[email protected]
with:
token: ${{ secrets.PAT_PACKAGES }}
organization: salt-labs
container: ${{ needs.matrix.outputs.repository_name }}/${{ matrix.container }}
keep-younger-than: 30
keep-last: 3
prune-tags-regexes: |
^202*.*
dry-run: false