I have in my TeamCity job a VCS trigger that runs automatically once we push changes in our bitbucket repo. that looks like this:
Quiet period: 60 seconds (default)
VCS trigger rules:
-:user=ciuser:**/*
Triggers one build per each VCS check-in (include several check-ins in build if they are from the same committer)
now when checking the %teamcity.build.triggeredBy%
parameter Im getting as a result the string "Git" instead of actually the user that pushed those changes.
is there a way to get the username that made the changes instead of getting that git parameter.
I searched here and didn't find any answer and didn't find any relevant question in stack overflow either.