aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/remove_old_artifacts.yml
blob: 79a23c4161dbd3db8bfe12c88e0bdf53b2564845 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: Remove old artifacts

on:
  workflow_dispatch:
    inputs:
  schedule:
    # Every day at 1am
    - cron: '0 1 * * *'

jobs:
  remove-old-artifacts:
    runs-on: ubuntu-latest
    timeout-minutes: 10

    steps:
    - name: Remove old artifacts
      uses: c-hive/gha-remove-artifacts@v1
      with:
        age: '10 days' # '<number> <unit>', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js