You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi all,
So basically we have automation setup that will send an email on a schedule each week, this is working fine a part from we want to include some information about pull requests, titles, url etc.
So in the send email body we have the following:
{{#lookupIssues}}
* {{key}} | {{summary}} | {{pullrequest.url}}
{{/}}
Key and summary display fine, but pull request URL does not display at all, is this not supported or is there a better way to do it?
Also bonus questions does anyone know how to get pull request ID?
Which trigger are you using for this rule? It's worth noting that the pull request smart values are only supported when using the Pull request created, Pull request declined and Pull request merged triggers.
You can read more about this here:
https://support.atlassian.com/cloud-automation/docs/jira-smart-values-development/
Cheers,
Charlie
Hi Charlie,
That's disappointing,
We are triggering on a schedule that runs a JQL to pull all jobs for the week that has been merged.
We then wanted to show Job number, description, Pull request url to help smooth out our release note process.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We have a very similar requirement...
We want to send a notification (email / Slack) when a fix version gets released, including:
The first two seem to be doable but I can't seem to find a way to do the third when the trigger is Version Released.
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.
Hi @Chris Drylie -- Welcome to the Atlassian Community!
Smart values are usually case-sensitive, so please try: {{pullRequest.url}}
https://support.atlassian.com/cloud-automation/docs/jira-smart-values-development/#pullRequest.url
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bill
Thanks for replying and the welcome :).
Gave it a try and the same result, everything else displays, juts not the Pull Request URL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Interesting... After the Lookup Issues action, please try writing this to the audit log and see what happens:
{{lookupIssues.first.key}} : {{lookupIssues.first.pullRequest.title}} -- {{lookupIssues.first.pullRequest.url}}
That will confirm if the development fields work for a Lookup Issues action, and give you a key to go confirm manually if the issue view does show the PR information.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Shows the Key but nothing for pull request info. I wonder if it is because Pull Request is in the development section in Jira.
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.