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 339437b commit 17b9990Copy full SHA for 17b9990
.github/workflows/nightly_cleanup.yml
@@ -0,0 +1,13 @@
1
+name: 'nightly artifacts cleanup'
2
+on:
3
+ schedule:
4
+ - cron: '0 4 * * *' # every night at 4 am UTC
5
+
6
+jobs:
7
+ delete-artifacts:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: kolpav/purge-artifacts-action@v1
11
+ with:
12
+ token: ${{ secrets.GITHUB_TOKEN }}
13
+ expire-in: 3days # Setting this to 0 will delete all artifacts
0 commit comments