mirror of
https://github.com/ysoftdevs/oauth-playground-server.git
synced 2026-01-19 01:57:23 +01:00
15 lines
309 B
YAML
15 lines
309 B
YAML
name: Artifacts cleanup
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 1 * * *' # every night at 1 am UTC
|
|
|
|
jobs:
|
|
delete-artifacts:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: kolpav/purge-artifacts-action@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
expire-in: 0days
|