Skip to content

Instantly share code, notes, and snippets.

@emmanuelnk
Created November 18, 2021 16:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save emmanuelnk/f374df1cc00563f91ddae7b95ea471ae to your computer and use it in GitHub Desktop.
Save emmanuelnk/f374df1cc00563f91ddae7b95ea471ae to your computer and use it in GitHub Desktop.
Delete Workflow Runs
#!/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