We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38a5a2b commit 4b4ac32Copy full SHA for 4b4ac32
1 file changed
.github/workflows/cleanup.yml
@@ -0,0 +1,18 @@
1
+name: Clean Up
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ # * is a special character in YAML so you have to quote this string
7
+ - cron: '0 0 * * *'
8
9
+jobs:
10
+ cleanup:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+ - uses: yanovation/delete-old-actions@v1
15
+ with:
16
+ token: ${{ secrets.GITHUB_TOKEN }}
17
+ days-ago: 30
18
+ keep-latest: 10
0 commit comments