-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Low
-
Component/s: Repository - Pull Request List
-
None
-
5
-
Severity 3 - Minor
-
241
Issue Summary
Some users do not show up on the author list in PR page, regardless of whether they have authored a Pull request or not before on the repository. Specifically, deactivated users and users without workspace permissions do not show up.
Steps to Reproduce
There are no known steps to reproduce this issue at this moment.
This has happened only on certain repositories at this point.
Expected Results
All users that have authored a PR in the past should show up on the PR author list.
Actual Results
Some users are missing from the PR author list. The '?user_search' parameter seems to be malfunctioning on certain repositories.
Workaround
Git log (git log) allows you to filter and view a repository's commit history. By tailoring the command, you can display merge commits made by the user:
git log --merges --committer="Add user name here" --pretty=format:"%h - %cd - %cn: %s"
Explanation of the command:
- %h is the abbreviated commit hash.
- %cd is the commit date.
- %cn is the committer's name.
- %s is the commit subject.
By executing this command on your local repository, you should be able to identify the pull requests linked to a user a particular repository. After that, you can look up the corresponding pull request on Bitbucket Cloud for further details.
- mentioned in
-
Page Loading...