Hello,
I would really like to get a hyperlink under "Deployment" which takes you to the actual URL of the build. Currently, both "Pipeline" and "Deployment" link to the completed GitHub action run:
Here is what you see when you click on either of the links:
And this is the button I would like to link to have under "Deployment" on Jira:
I'm using a third-party GitHub action which automatically creates Vercel preview builds whenever we push to a branch.
Waiting for the same feature. Need deployment URL to be sent to Jira Github integration trigger
+1.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We also need this, without it is kind of useless
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had this exact same issue (api.github.com... showing up in the jira ui) but adding log_url worked when creating the deployment status.
const deploymentStatus = await octokit.rest.repos.createDeploymentStatus({
...
log_url: vercelDeploymentUrl,
...
});
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have never seen this parameter before. Where is it documented?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.