File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 pull_request :
88 branches :
99 - ' *'
10+ workflow_dispatch :
1011
1112jobs :
1213 ShellCheck :
2122 runs-on : ubuntu-latest
2223 needs : ShellCheck
2324 steps :
25+ - name : Make Space
26+ run : |
27+ sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android
28+ sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET
2429 - name : Checkout
2530 if : success()
2631 id : checkout
Original file line number Diff line number Diff line change 1+ name : Delete old workflow runs
2+ on :
3+ workflow_dispatch :
4+ inputs :
5+ days :
6+ description : ' Number of days.'
7+ required : true
8+ default : 90
9+
10+ jobs :
11+ del_runs :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Delete workflow runs
15+ uses : Mattraks/delete-workflow-runs@main
16+ with :
17+ token : ${{ secrets.AUTH_PAT }}
18+ repository : ${{ github.repository }}
19+ retain_days : ${{ github.event.inputs.days }}
You can’t perform that action at this time.
0 commit comments