Can I add a Header to the annotations section

I have two annotations sections in my build. I want to know which is which. I have not been able to set a visible title or heading to either of them. Is there a way to do that?

I have tried this but none of the parameters showed up as a title:
buildkite-agent annotate --context junit-rails60 --style error --experiment Rails60

hey @js-cb annotations support markdown syntax so you could set a header with the body of your annotation using the # header marker for markdown. So you could have an annotation body like this:

# This is header 1
annotation content here.

That would then show up as the default bold, etc of headers

or you can use html tags (I use <h4> most of the time, as the larger header appear way to big in annotation)

1 Like