@dana
To find out who pushed a tag(s) to a Bitbucket repository, you can follow these steps:
You can also use the Bitbucket API to retrieve this information programmatically. By making a GET request to the Bitbucket API endpoint for the specific commit that added the tag, you can retrieve the author information from the API response. The API endpoint for retrieving commit information is typically in the format: https://api.bitbucket.org/2.0/repositories/{username}/{repository_slug}/commit/{commit_id}
.