No clickable links in annotations created from workflow commands #47014
-
Select Topic AreaProduct Feedback BodyI noticed that urls in annotations created using workflow commands are not clickable. Neither GitHub URLs or autolink references work. Basic workflow to reproduce this behavior: https://github.com/austinpray-mixpanel/gha-demo-annotation-links/pull/1/files name: Temp Annotations Test
on:
pull_request: {}
jobs:
test_annotations:
runs-on: ubuntu-latest
steps:
- name: test configured autolink
run: |
echo '::error file=README.md,line=1,title=testing links::go/123'
- name: test gh link
run: |
echo '::error file=README.md,line=1,title=testing links::wiki https://github.com/your/repo/wiki/GHA-0001'
Clickable links work fine in the action run summary view But do not work on the “Files changed” tab Users having to copy paste URLs into the browser is not ideal. I would at least expect the highlighted URLs to be consistent between the summary page and the files changed tab. If I could wave a magic wand I would love the ability to have markdown style links to save space in the annotation text. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
as anotações do GitHub Actions não suportam links clicáveis nas guias de arquivos alterados. Isso pode ser uma limitação na implementação atual. Comunidade precisa se unir e criar varias solicitações de recurso no GitHub para que os desenvolvedores possam considerá-la em futuras atualizações, pois seria muito util. |
Beta Was this translation helpful? Give feedback.
-
è possivel utilizar com badges se precisar é uma maneira de contornar abaixo segue o codigo <a href="https://YOURLINK>COM" target="_blank"><img src="https://img.shields.io/badge/website-000000?style=for-the-badge&logo=About.me&logoColor=white" target="_blank"></a>
~~ |
Beta Was this translation helpful? Give feedback.
-
Inline annotation messages are now handled the same way as the run summary annotations, so embedded GitHub links as well as |
Beta Was this translation helpful? Give feedback.
-
This doesnt appear to work for non standard urls. I have a multi build project that provisions a site for each git branch in the project, i.e:
This is likely due to the |
Beta Was this translation helpful? Give feedback.
Inline annotation messages are now handled the same way as the run summary annotations, so embedded GitHub links as well as
@user
references should now be clickable.