forked from QiuSimons/YAOF
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 886 Bytes
/
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
name: Cleaning
on:
workflow_dispatch:
schedule:
- cron: 1 1 * * 1
watch:
types: started
jobs:
Cleanup-Old-Releases:
runs-on: ubuntu-24.04
steps:
- name: Delete Older Releases
uses: dev-drprasad/delete-older-releases@master
with:
keep_latest: 20
delete_tags: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Cleanup-Old-Artifacts:
runs-on: ubuntu-24.04
steps:
- name: Cleanup Old Action Artifacts
uses: c-hive/gha-remove-artifacts@master
with:
age: '3 days'
skip-recent: 3
Cleanup-Workflow-Logs:
runs-on: ubuntu-24.04
steps:
- name: Cleanup Workflow Logs
uses: Mattraks/delete-workflow-runs@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
retain_days: 3