generated from octomation/go-tool
-
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.42 KB
/
caches.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
name: Cache invalidation
on:
workflow_dispatch:
schedule:
- cron: 0 7 1 * *
jobs:
delete:
name: Deleting
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/[email protected]
with: { fetch-depth: 0 }
- name: Install a GitHub CLI cache extension
run: gh extension install actions/gh-actions-cache
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Cleanup caches
run: |
keys=$(gh actions-cache list -R '${{ github.repository }}' | cut -f1)
if [ -z "${keys}" ]; then echo 'Nothing to do' && exit 0; fi
echo Deleting caches...
for key in ${keys}; do
gh actions-cache delete "${key}" -R '${{ github.repository }}' --confirm || true
done
echo Done
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
notify:
name: Notifying
needs: [ delete ]
runs-on: ubuntu-latest
if: failure() || success()
steps:
- name: Send Slack notification
uses: rtCamp/[email protected]
env:
SLACK_COLOR: ${{ contains(needs.*.result, 'failure') && 'failure' || 'success' }}
SLACK_ICON: https://github.com/github.png?size=64
SLACK_TITLE: '🧹 ${{ github.repository }}: ${{ github.workflow }}'
SLACK_USERNAME: GitHub Actions
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}