gh cache list
List Github Actions caches
gh cache list [flags]
Options
-L
,--limit <int>
- Maximum number of caches to fetch
-O
,--order <string>
- Order of caches returned: {asc|desc}
-S
,--sort <string>
- Sort fetched caches: {created_at|last_accessed_at|size_in_bytes}
Options inherited from parent commands
-R
,--repo <[HOST/]OWNER/REPO>
- Select another repository using the [HOST/]OWNER/REPO format
Examples
# List caches for current repository
$ gh cache list
# List caches for specific repository
$ gh cache list --repo cli/cli
# List caches sorted by least recently accessed
$ gh cache list --sort last_accessed_at --order asc