Skip to content

Commit 25d5c0e

Browse files
authored
v1.1.11 (#10)
Build updates * Adding workflow cleanup action
1 parent 0d8e361 commit 25d5c0e

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: delete-workflow-runs
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
days:
7+
description: 'Number of days.'
8+
required: true
9+
default: 60
10+
11+
jobs:
12+
del_old_runs:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Delete old workflow runs
16+
uses: bencgreen/delete-workflow-runs@main
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}
19+
repository: ${{ github.repository }}
20+
retain_days: ${{ github.event.inputs.days }}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.10
1+
1.1.11

0 commit comments

Comments
 (0)