79277298

Date: 2024-12-13 05:33:40
Score: 0.5
Natty:
Report link

This is probably the simplest script to use to delete workflow runs.

for id in $(gh run list --json databaseId --jq .[].databaseId)
do
  gh run delete ${id}
done
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Tatsuya Fujisaki