Skip to content

Instantly share code, notes, and snippets.

@matijs
Last active March 17, 2025 08:12
Show Gist options
  • Save matijs/a6f594e418140651ffc68656e2692961 to your computer and use it in GitHub Desktop.
Save matijs/a6f594e418140651ffc68656e2692961 to your computer and use it in GitHub Desktop.
Clean up GitHub workflow runs older than 7 days
set -euo pipefail
a_week_ago=$(date --utc --date "7 days ago" +%Y-%m-%dT%H:%M:%S%z)
runs=$(gh run list --limit 1000 --json createdAt,databaseId --jq ".[] | select(.createdAt < \"$a_week_ago\") | .databaseId")
for run in "$runs"; do gh run delete "$run"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment