-
Notifications
You must be signed in to change notification settings - Fork 4
79 lines (71 loc) · 2.77 KB
/
cleanup-after-merge.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
76
77
78
79
# ---------------------------------------------------------------------------
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ---------------------------------------------------------------------------
name: Cleanup after merge
on:
pull_request:
types:
- closed
permissions:
# `actions:write` permission is required to delete caches
# See also: https://docs.github.com/en/rest/actions/cache?apiVersion=2022-11-28#delete-a-github-actions-cache-for-a-repository-using-a-cache-id
actions: write
jobs:
delete:
name: Cleanup
runs-on: ubuntu-latest
steps:
- name: Delete github caches belonging to branch {{ github.ref }}
env:
GH_TOKEN: ${{ github.token }}
run: |
gh extension install actions/gh-actions-cache
repo="${{ github.repository }}"
branch="${{ github.ref }}"
printf "Fetching list of cache keys for branch %s..." "${branch}"
cache_keys_for_pr=( $( \
gh actions-cache \
--repo "${repo}" \
--branch "${branch}" \
list \
| cut -f 1) \
)
echo " Done."
# Setting this to not fail the workflow while deleting cache keys.
set +e
if [[ -n "${cache_keys_for_pr[*]}" ]]
then
echo "Found the following cache keys:"
for cache_key in "${cache_keys_for_pr[@]}"
do
echo " ${cache_key}"
done
echo "Starting deletion of caches"
for cache_key in "${cache_keys_for_pr[@]}"
do
printf " Deleting cache with key %s..." "${cache_key}"
gh actions-cache delete \
--repo "${repo}" \
--branch "${branch}" \
--confirm \
"${cache_key}" \
1> /dev/null
echo " Done."
done
echo "All caches deleted."
else
echo "No caches on branch ${branch} found. Nothing to delete."
fi