JasonEtco / ci-reporter

🚧📝 GitHub App to show CI failure logs in PR comments
https://github.com/apps/ci-reporter
ISC License
48 stars 11 forks source link

Does it work with GitHub Actions? #61

Open zeke opened 5 years ago

zeke commented 5 years ago

Hi @JasonEtco! 👋

I see this in the README:

ci-reporter currently supports TravisCI and CircleCI.

I'm working on a project that is now using GitHub Actions to run its Jest test suite. Think this app will work for it?

cc @sarahs

JasonEtco commented 5 years ago

Maybe! I've done a proof-of-concept for getting Check Suite data about Actions with action-badges, so there's definitely a possibility. Where it does get complicated is that GitHub Actions creates multiple Check Suites for each workflow, with no distinction between them for what the workflow is. This is a limitation of the Checks primitive.

So short answer, we could add it as a provider, but for repos with multiple workflows like (test and release), that's currently not doable. Here are some more deets: https://github.com/JasonEtco/action-badges/issues/4

Milo123459 commented 2 years ago

Any updates?