Skip to content

Commit 603d457

Browse files
committed
Create remove-old-artifacts.yml
1 parent 6943590 commit 603d457

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Remove old artifacts
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
remove-old-artifacts:
8+
runs-on: ubuntu-latest
9+
timeout-minutes: 10
10+
11+
steps:
12+
- name: Remove old artifacts
13+
uses: c-hive/gha-remove-artifacts@v1
14+
with:
15+
age: '1 day' # '<number> <unit>', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js
16+
# Optional inputs
17+
# skip-tags: true
18+
# skip-recent: 5

0 commit comments

Comments
 (0)