Seeing Breakdown of GitHub Actions Usage In GitHub Organization

Viewed 228

I manage a GitHub Organization, which has hundreds of repos in it. We have a share amount of GitHub Actions minutes, which runs out very fast. Based on this document, I can see the total minutes used but I need to find a way to see which repos or which actions consumed the most minutes. Is there a way to do this?

1 Answers

You can download a CSV usage report from that same area of the GitHub interface. It's only for the current period and it's a bit of a pain to work with, but the data's certainly all there.

Having said that, I had the same problem so I have been working on an extension for GitHub's gh client to pull out the information in a slightly less painful way: https://github.com/geoffreywiseman/gh-actuse

It's a bit slow because it has to make a series of REST calls via Bash, and you still can only get information for the current period but... the core capability is there.

Related