Hello,
could you please tell me how I can identify the repositories that currently use Issues or Wikis features within our workspace?
Thanks,
Raffaele
Hello and welcome to the Community @Giovanni Raffaele Gargiulo
I do not think Bitbucket Cloud has a native workspace-level view for that.
I would use the repositories API and filter for repos where has_issues=true or has_wiki=true. Atlassian’s own KB points to the API for exactly this kind of workspace-wide check.
Example:
GET /2.0/repositories/<workspace>?fields=next,+values.full_name,+values.has_issues,+values.has_wiki&q=has_issues=true OR has_wiki=true
If you have many repositories, just follow the next link until you have the full list.
Hello Arkadiusz.
Thanks so much for the advice.
Best regards,
Raffaele
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.