Compare commits
No commits in common. "a273aa4588f55f4d930d57ef210352aaef7be660" and "082fd79c5128e74eabe076d9c8bbf22daacc63bf" have entirely different histories.
a273aa4588
...
082fd79c51
|
@ -0,0 +1,13 @@
|
|||
name: 'Delete old artifacts'
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 * * * *' # every hour
|
||||
|
||||
jobs:
|
||||
delete-artifacts:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: kolpav/purge-artifacts-action@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
expire-in: 7days # Setting this to 0 will delete all artifacts
|
Loading…
Reference in New Issue