14 lines
379 B
Plaintext
14 lines
379 B
Plaintext
|
#!/bin/sh -xe
|
||
|
|
||
|
type -p gh > /dev/null || { echo "ERROR: gh tool not found"; exit 1; }
|
||
|
type -p jq > /dev/null || { echo "ERROR: jq tool not found"; exit 1; }
|
||
|
|
||
|
repo="kdave/btrfs-progs"
|
||
|
|
||
|
from=11
|
||
|
|
||
|
for id in $(gh run -R "$repo" list -w 'Devel build and tests' --json databaseId | jq '.[].databaseId' | tail -n +${from}); do
|
||
|
echo "Delete run $id"
|
||
|
gh run -R "$repo" delete "$id"
|
||
|
done
|