forked from QiuSimons/YAOF
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (40 loc) · 1.12 KB
/
Cleaning.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
name: Cleaning
on:
schedule:
- cron: 1 1 * * 1
watch:
types: started
jobs:
Cleanup-Old-Releases:
runs-on: ubuntu-20.04
if: github.event.repository.owner.id == github.event.sender.id
steps:
- name: Delete Older Releases
uses: dev-drprasad/delete-older-releases@master
with:
keep_latest: 9
delete_tags: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Cleanup-Old-Artifacts:
runs-on: ubuntu-20.04
if: github.event.repository.owner.id == github.event.sender.id
steps:
- name: Cleanup Old Action Artifacts
uses: heidi-pay/gha-delete-artifacts@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
days: 3
max-artifacts-to-delete: 100
dry-run: no
Cleanup-Workflow-Logs:
runs-on: ubuntu-20.04
if: github.event.repository.owner.id == github.event.sender.id
steps:
- name: Cleanup Workflow Logs
uses: Mattraks/delete-workflow-runs@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
retain_days: 3