Created
November 18, 2021 16:58
-
-
Save emmanuelnk/f374df1cc00563f91ddae7b95ea471ae to your computer and use it in GitHub Desktop.
Delete Workflow Runs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Delete workflow runs - dwr | |
# Given an "owner/repo" name, such as "qmacro/thinking-aloud", | |
# retrieve the workflow runs for that repo and present them in a | |
# list. Selected runs will be deleted. Uses the GitHub API. | |
# Requires gh (GitHub CLI), jq (JSON processor) and fzf | |
# First version | |
set -o errexit | |
set -o pipefail | |
declare repo=${1:?No owner/repo specified} | |
jqscript() { | |
cat <<EOF | |
def symbol: | |
sub("skipped"; "SKIP") | | |
sub("success"; "GOOD") | | |
sub("failure"; "FAIL"); | |
def tz: | |
gsub("[TZ]"; " "); | |
.workflow_runs[] | |
| [ | |
(.conclusion | symbol), | |
(.created_at | tz), | |
.id, | |
.event, | |
.name | |
] | |
| @tsv | |
EOF | |
} | |
selectruns() { | |
gh api --paginate "/repos/$repo/actions/runs" \ | |
| jq -r -f <(jqscript) \ | |
| fzf --multi | |
} | |
deleterun() { | |
local run id result | |
run=$1 | |
id="$(cut -f 3 <<< "$run")" | |
gh api -X DELETE "/repos/$repo/actions/runs/$id" | |
[[ $? = 0 ]] && result="OK!" || result="BAD" | |
printf "%s\t%s\n" "$result" "$run" | |
} | |
deleteruns() { | |
local id | |
while read -r run; do | |
deleterun "$run" | |
sleep 0.25 | |
done | |
} | |
main() { | |
selectruns | deleteruns | |
} | |
main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment