The idea is:
The idea is to output the url of the execution/workflow with additional properties like
$execution.url -> https://n8n-instance.local/workflow/wf12345/executions/ex12345
$workflow.url -> https://n8n-instance.local/workflow/wf12345
My use case:
We have configured a lot of traces to the n8n executions in our automation (e.g. the error handling with the link to the broken execution, or playbooks with links to the workflows). The issue is that we have a DEV instance of n8n and PRD instance. They have different fqdn’s and every time when we need to move the workflow from dev to prod, it’s very time-consuming to replace all the urls (usually our playbooks consists of 3-5 workflows).
I think it would be beneficial to add this because:
it will be way easier to use some metadata variable to output the full link instead of building it every-time with the https://my-dev-instance.n8n.local/workflow/{{ $workflow.id }}/executions/{{$execution.id}}
And I suppose it should not be that hard to implement