File: dwr.sh

package info (click to toggle)
rust-coreutils 0.0.30-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 17,388 kB
  • sloc: sh: 1,088; python: 407; javascript: 72; makefile: 51
file content (85 lines) | stat: -rw-r--r-- 1,841 bytes parent folder | download | duplicates (3)
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
83
84
85
#!/usr/bin/env bash

# `dwr` - delete workflow runs (by DJ Adams)
# ref: <https://github.com/qmacro/dotfiles/blob/230c6df494f239e9d1762794943847816e1b7c32/scripts/dwr>
# ref: [Mass deletion of GitHub Actions workflow runs](https://qmacro.org/autodidactics/2021/03/26/mass-deletion-of-github-actions-workflow-runs) @@ <https://archive.is/rxdCY>

# LICENSE: "Feel free to steal, modify, or make fun of" (from <https://github.com/qmacro/dotfiles/blob/230c6df494f239e9d1762794943847816e1b7c32/README.md>)

# spell-checker:ignore (options) multi ; (people) DJ Adams * qmacro ; (words) gsub

# 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) and jq (JSON processor)

# First version

set -o errexit
set -o pipefail

declare repo=${1:?No owner/repo specified}

jq_script() {

    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

}

select_runs() {

    gh api --paginate "/repos/$repo/actions/runs" |
        jq -r -f <(jq_script) |
        fzf --multi

}

delete_run() {

    local run id result
    run=$1
    id="$(cut -f 3 <<<"$run")"
    gh api -X DELETE "/repos/$repo/actions/runs/$id"
    # shellcheck disable=SC2181
    [[ $? = 0 ]] && result="OK!" || result="BAD"
    printf "%s\t%s\n" "$result" "$run"

}

delete_runs() {

    local id
    while read -r run; do
        delete_run "$run"
        sleep 0.25
    done

}

main() {

    select_runs | delete_runs

}

main