Create README.md

This commit is contained in:
Till Krüss
2023-01-21 13:17:31 -08:00
committed by GitHub
parent c201af5ad3
commit 6e45ca5154
+9
View File
@@ -0,0 +1,9 @@
# Workflows
## Delete runs by workflow name
```bash
gh run list --workflow 'redis-server-tests.yml' --limit 1000 --json databaseId \
| jq '.[].databaseId' \
| xargs -I % gh api --silent -X DELETE /repos/predis/predis/actions/runs/%
```