diff --git a/openedx_webhooks/tasks/pr_tracking.py b/openedx_webhooks/tasks/pr_tracking.py index 75875098..8b245b2a 100644 --- a/openedx_webhooks/tasks/pr_tracking.py +++ b/openedx_webhooks/tasks/pr_tracking.py @@ -291,8 +291,10 @@ def desired_support_state(pr: PrDict) -> PrDesiredInfo: if state == "reopened": desired.bot_comments_to_remove.add(BotComment.SURVEY) - if state in ["closed", "merged"]: - desired.bot_comments.add(BotComment.SURVEY) +# # temp: Disable survey link on pull requests +# # https://github.com/openedx/openedx-webhooks/issues/259 +# if state in ["closed", "merged"]: +# desired.bot_comments.add(BotComment.SURVEY) if desired.is_refused and state not in ["closed", "merged"]: desired.bot_comments.add(BotComment.NO_CONTRIBUTIONS)