Replies: 1 comment
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Product Feedback
What GitHub Actions topic or product is this about?
General
Discussion Details
I have many private repos with a top-level orchestration GitHub Actions workflow at
.github/workflows/all.yaml. That workflow calls a number of other workflows in the same folder, likedeploy.yaml.Problem
all.yamlcallsdeploy.yaml. When viewing the run logs fordeploy.yaml, the sidebar "Workflow file" link goes to the source for the caller (all.yaml), not the workflow I'm looking at (deploy.yaml).When viewing job logs, the sidebar link should always view the source for the workflow file that generated the logs on screen. Or, there should be another link in the page to navigate to that file. It's very disorienting to be taken to another workflow file altogether, which does not contain the code that generated the logs I was viewing.
As a workaround, I've added a job to all of my top-level GHA workflows that uses
$GITHUB_STEP_SUMMARYto show links to view source on the current branch for all files that the workflow calls. But that still requires leaving the job log view to go back to the run summary to get to those links.Reproduction
deployjob in the graph to view its logs.Workflow filelink in the sidebar while viewing thedeploylogs.all.yaml, notdeploy.yaml.Annotated screenshot of log view for
deploy.yamlin a similar setupAnnotations in yellow boxes describe where the links will take you.
Beta Was this translation helpful? Give feedback.
All reactions