File: README.md

package info (click to toggle)
php-nrk-predis 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 9,364 kB
  • sloc: php: 77,583; xml: 50; makefile: 12
file content (9 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
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/%
```