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.
I'd like to query the Bitbucket API for occurrences of a specific custom pipeline. I've tried various incarnations of the filtering syntax, but it never seems to filter anything.
Here's the basic curl invocation I've got.
curl -G --fail \
--data-urlencode 'q=target.selector.pattern = "$RULE"' \
--data-urlencode 'sort=-created_on' \
--data-urlencode 'fields=values.target.selector.*,values.created_on' \
--data-urlencode 'page=1' \
--data-urlencode 'pagelen=10' \
"https://api.bitbucket.org/2.0/repositories/glowforge/$REPO/pipelines/"
Is this possible? I've seen other answers show that querying by branch (for example) doesn't even use the filtering syntax (e.g., just "target.branch=master"), so I'm at a loss for how to move forward.
I'm also running into this now, it seems like `q` just isn't implemented on this endpoint. Not sure if this is a bug or just a missing feature, but I would love to upvote it to see it made usable.
Otherwise, there's no real workaround other than polling for every single pipeline in the entire history of the repo, which is obviously untenable.
Very sad right now. I can't query to find the last successful deployment with a specific tag prefix. So that means I cannot re-deploy the last successful deployment.
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.