Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 171 Bytes

github-actions.md

File metadata and controls

7 lines (7 loc) · 171 Bytes

How to bulk-delete the history of GitHub Actions workflow runs

for id in $(gh run list --json databaseId --jq .[].databaseId)
do
  gh run delete ${id}
done