mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-27 05:38:37 +08:00
13 lines
325 B
YAML
13 lines
325 B
YAML
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 |