From cf5360f6f6f589fc61a7179391bed42f2d62af02 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Fri, 29 Jan 2021 20:26:45 +0000 Subject: [PATCH] Don't disable update config on webhooks --- app/blueprints/github/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/blueprints/github/__init__.py b/app/blueprints/github/__init__.py index 18744d8..2e934b1 100644 --- a/app/blueprints/github/__init__.py +++ b/app/blueprints/github/__init__.py @@ -142,9 +142,6 @@ def webhook(): else: return error(400, "Unsupported event. Only 'push', `create:tag`, and 'ping' are supported.") - # Disable update config if webhooks are used - package.update_config = None - # # Perform release #