This commit is contained in:
严浩
2025-08-12 13:59:27 +08:00
commit 41ff2ce04a
21 changed files with 1265 additions and 0 deletions

4
.github/gh-run-delete.sh vendored Normal file
View File

@@ -0,0 +1,4 @@
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