Last active
March 17, 2025 08:12
-
-
Save matijs/a6f594e418140651ffc68656e2692961 to your computer and use it in GitHub Desktop.
Clean up GitHub workflow runs older than 7 days
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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