-
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (64 loc) · 2.16 KB
/
delete-old-workflow-runs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Delete Old Workflow Runs
on:
workflow_dispatch:
inputs:
days:
description: 'Number of days to retain workflow runs.'
required: true
default: '30'
minimum-runs:
description: 'The minimum number of runs to keep for each workflow.'
required: true
default: '6'
schedule:
- cron: '21 5 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
DAYS: 30
MINIMUM_RUNS: 6
permissions: read-all
jobs:
set-runtime-values:
name: Set Runtime Values
runs-on: ubuntu-latest
outputs:
days: ${{ steps.set-output-defaults.outputs.days }}
minimum-runs: ${{ steps.set-output-defaults.outputs.minimum-runs }}
steps:
- name: Set Runtime Values
id: set-output-defaults
run: |
echo "days=${{ github.event.inputs.days || env.DAYS }}" >> "${GITHUB_OUTPUT}"
echo "minimum-runs=${{ github.event.inputs.minimum-runs || env.MINIMUM_RUNS }}" >> "${GITHUB_OUTPUT}"
delete-old-workflows:
name: Delete Old Workflow Runs
runs-on: ubuntu-latest
permissions:
actions: write
needs:
- set-runtime-values
steps:
- name: Delete Old Workflow Runs
uses: Mattraks/delete-workflow-runs@39f0bbed25d76b34de5594dceab824811479e5de # v2.0.6
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
retain_days: ${{ needs.set-runtime-values.outputs.days }}
keep_minimum_runs: ${{ needs.set-runtime-values.outputs.minimum-runs }}
slack-workflow-status:
if: always()
name: Slack Post Workflow Notification
needs:
- delete-old-workflows
runs-on: ubuntu-latest
steps:
- name: Slack Workflow Notifications
if: ${{ github.event_name == 'schedule' && needs.delete-old-workflows.result != 'success'}}
uses: Gamesight/slack-workflow-status@68bf00d0dbdbcb206c278399aa1ef6c14f74347a # v1.3.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
include_jobs: on-failure
include_commit_message: true