Skip to content

Instantly share code, notes, and snippets.

@michmzr
Created June 20, 2024 13:21
Show Gist options
  • Save michmzr/4b79e8e22842961d59824fcb6efd5087 to your computer and use it in GitHub Desktop.
Save michmzr/4b79e8e22842961d59824fcb6efd5087 to your computer and use it in GitHub Desktop.
Remove Github Actions disabled workflows and runs
org=<your org>
repo=<your repo>
# Get workflow IDs with status "disabled_manually"
workflow_ids=($(gh api repos/$org/$repo/actions/workflows --paginate | jq '.workflows[] | select(.["state"] | contains("disabled_manually")) | .id'))
for workflow_id in "${workflow_ids[@]}"
do
echo "Listing runs for the workflow ID $workflow_id"
run_ids=( $(gh api repos/$org/$repo/actions/workflows/$workflow_id/runs --paginate | jq '.workflow_runs[].id') )
for run_id in "${run_ids[@]}"
do
echo "Deleting Run ID $run_id"
gh api repos/$org/$repo/actions/runs/$run_id -X DELETE >/dev/null
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment