mirror of
https://github.com/yanhao98/composite-actions.git
synced 2025-07-12 22:30:48 +08:00
5 lines
208 B
Bash
5 lines
208 B
Bash
while gh run list --json databaseId --jq '.[].databaseId' | grep -q .; do
|
|
for id in $(gh run list --json databaseId --jq '.[].databaseId'); do gh run delete $id; done
|
|
echo "继续删除下一批..."
|
|
done
|