-
Notifications
You must be signed in to change notification settings - Fork 25
46 lines (41 loc) · 1.23 KB
/
Clean.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
36
37
38
39
40
41
42
43
44
45
46
name: Cleaning
on:
schedule:
- cron: '1 8 * * 1'
# watch:
# types: started
jobs:
Cleanup-Old-Releases:
runs-on: ubuntu-22.04
if: github.repository_owner_id == github.event.sender.id || github.event_name == 'schedule'
steps:
- name: Delete Older Releases
uses: dev-drprasad/delete-older-releases@master
with:
keep_latest: 4
delete_tags: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Cleanup-Old-Artifacts:
runs-on: ubuntu-22.04
if: github.repository_owner_id == github.event.sender.id || github.event_name == 'schedule'
steps:
- name: Cleanup Old Action Artifacts
uses: heidi-pay/gha-delete-artifacts@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
days: 30
max-artifacts-to-delete: 100
dry-run: no
Cleanup-Workflow-Logs:
runs-on: ubuntu-22.04
if: github.repository_owner_id == github.event.sender.id || github.event_name == 'schedule'
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
retain_days: 30
keep_minimum_runs: 6