From c0066668371be3c4fffc0aee7b7db659a59049b2 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Fri, 15 Aug 2025 16:40:22 +0200 Subject: [PATCH] [web] run sentry as current user to match up with the git-repo owner (#27964) GitOrigin-RevId: a0736a6d7d8a24ec6a7b539526f52d3c2749c0bb --- services/web/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/Makefile b/services/web/Makefile index 7475559814..372b3c7e48 100644 --- a/services/web/Makefile +++ b/services/web/Makefile @@ -578,6 +578,7 @@ sentry_upload: MONOREPO=$(shell cd ../../ && pwd) sentry_upload: docker run --rm \ --volume $(MONOREPO):$(MONOREPO) --workdir $(PWD) \ + --user "$(shell id -u):$(shell id -g)" \ --env BRANCH_NAME --env SENTRY_RELEASE \ --entrypoint bin/sentry_upload \ $(SENTRY_IMAGE)