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.
Hello guys and gals.
I have the following automation
When Pull Request is merged -> move the task to the DONE state.
Sometimes there are could be more than 1 dedicated pull request and I want to check
I can't find a way to get the number of open pull requests. Is there a way to do that?
Thanks!
I have a very similar automation rule: If an issue is moved to `Done`, but there are open PRs or no PRs at all (I want there to be PRs for the issue, and I want them all to be merged), move it back. This is the relevant check, something like this should work for you as well:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried to use the following smart value:
` {{issue.development}}`
that gave me the following answer. In theory, I need the `state=OPEN` but I have no idea how can I parse it or get the parameter value
```json
```
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could perhaps use an Advanced Compare Condition step, and check if
{{issue.development}}
Contains
state=OPEN
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.