From 5e37a996854b9a8b08336c28f87596b4663761c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 2 May 2024 06:02:00 +0200 Subject: [PATCH] github: only include properties that we actually use for performance --- buildbot_nix/github_projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot_nix/github_projects.py b/buildbot_nix/github_projects.py index a2c2ef8..6f40319 100644 --- a/buildbot_nix/github_projects.py +++ b/buildbot_nix/github_projects.py @@ -116,7 +116,7 @@ class GithubBackend(GitBackend): "secret": self.webhook_secret, "strict": True, "token": self.config.token(), - "github_property_whitelist": "*", + "github_property_whitelist": ["github.base.sha", "github.head.sha"], } def create_avatar_method(self) -> AvatarBase | None: