|
|
@@ -155,7 +155,8 @@ class WebhookService:
|
|
|
files = set()
|
|
|
commits = payload.get("commits", [])
|
|
|
for commit in commits:
|
|
|
- for key in ["added", "modified", "removed"]:
|
|
|
+ # for key in ["added", "modified", "removed"]:
|
|
|
+ for key in ["added", "modified"]:
|
|
|
for f in (commit.get(key) or []):
|
|
|
files.add(normalize_path(f))
|
|
|
return files
|