Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to collect all Github action workflow results in one place?

We have a Github organisation with several Repository's with multiple workflows in each.

We have made use of Status badges in the README but it would be nice to have a web page or something similar that can display the latest results of each workflow.

Are there any good guides or suggestions on best way to do this?

Thanks

like image 913
James Mclaren Avatar asked Oct 28 '25 06:10

James Mclaren


1 Answers

There isn't any webpage doing this for you (yet), but you could use the Github API for actions to get those informations, as there are interesting services available to get those datas:

  • List repository workflows
  • List workflow runs for a repository
  • Get a workflow run

After listing all the workflow repos and runs, you could get the status of the last runs and update them using a CRON JOB ou something similar.

like image 136
GuiFalourd Avatar answered Oct 30 '25 09:10

GuiFalourd