We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d8e361 commit 25d5c0eCopy full SHA for 25d5c0e
2 files changed
.github/workflows/workflow-cleanup.yml
@@ -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
@@ -1 +1 @@
-1.1.10
+1.1.11
0 commit comments