- Install gh cli from https://github.com/cli/cli
- Generate Token from https://github.com/settings/apps / https://github.com/settings/tokens
- Save Token to notepad
- Login to gh with Powershell
# authenticate against github.com by reading the token from a file
$ gh auth login --with-token < mytoken.txt
- Run this script
$user = "username / organzation name"
$repo = "repo name"
(gh api repos/$user/$repo/actions/runs | ConvertFrom-Json).workflow_runs |
%{ $_.id } |
%{ gh api repos/$user/$repo/actions/runs/$_ -X DELETE }
Ref: