forked from Beer-Ops/Beer-Ops.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete-all-package-versions.sh
executable file
·82 lines (67 loc) · 1.75 KB
/
delete-all-package-versions.sh
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
80
81
82
#!/bin/bash
# Script that works to delete private packages stored on Github Packages
#
# Script is based on the work of Troy Fontaine (github.com/troyfontaine)
GITHUB_TOKEN=$GPR_PAT
REPO_OWNER=$1
REPO_NAME=$2
PACKAGE_NAME=$3
if [ "$#" -ne 3 ]; then
echo "Usage: $0 <REPO_OWNER> <REPO_NAME> <PACKAGE_NAME>" >&2
exit 1
fi
graphqlJson() {
local query="$1"; shift
curl -s -H "Authorization: bearer $GITHUB_TOKEN" -X POST -H "Accept: application/vnd.github.v3+json" -d '{"query":"'"$query"'"}' 'https://api.github.com/graphql'
}
graphqlDelete() {
local query="$1"; shift
curl -s -H "Accept: application/vnd.github.package-deletes-preview+json" -H "Authorization: bearer $GITHUB_TOKEN" -X POST -d '{"query":"'"$query"'"}' 'https://api.github.com/graphql'
}
deletePackageVersion() {
PACKAGE_ID="$1"
local query="$(cat <<EOF | sed 's/"/\\"/g' | tr '\n\r' ' '
mutation {
deletePackageVersion(
input:{packageVersionId:"$PACKAGE_ID"}
)
{ success }
}
EOF
)"
RESPONSE=$(graphqlDelete "$query")
echo "$RESPONSE"
}
listPackageVersions() {
local query="$(cat <<EOF | sed 's/"/\\"/g' | tr '\n\r' ' '
query {
repository(name: "$REPO_NAME", owner: "$REPO_OWNER") {
id
name
registryPackages(first: 1, name: "$PACKAGE_NAME") {
nodes {
versions(first: 100) {
nodes {
id
version
}
}
name
id
}
}
}
}
EOF
)"
ID_LIST=$(graphqlJson "$query" | jq -r '.data.repository.registryPackages.nodes[].versions.nodes[].id')
}
purgePackageVersions() {
for ID in $ID_LIST
do
echo -e "Purging package version with ID: '$ID' ..."
deletePackageVersion $ID;
done
}
listPackageVersions
purgePackageVersions