Home > OS >  GitHub CI badge shows "no status"
GitHub CI badge shows "no status"

Time:04-15

Create badge image:

Create badge image

Created badge image result:

[Created badge image result

Why is there not a "passing"/"failed"/"succeeded"?

Workflows

CodePudding user response:

I've run into this before, try using the name of the Action instead of the workflow file name.

https://github.com/sunnamed434/UIElementsUnturned/workflows/CI/badge.svg

I can't post an image yet but this snippet should work for you:

[![CI](https://github.com/sunnamed434/UIElementsUnturned/workflows/CI/badge.svg
)](https://github.com/sunnamed434/UIElementsUnturned/actions/workflows/NET_Framework_CI.yml)
  • Related