We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f05df6 commit 7f7e8daCopy full SHA for 7f7e8da
openedx_webhooks/tasks/pr_tracking.py
@@ -291,8 +291,10 @@ def desired_support_state(pr: PrDict) -> PrDesiredInfo:
291
if state == "reopened":
292
desired.bot_comments_to_remove.add(BotComment.SURVEY)
293
294
- if state in ["closed", "merged"]:
295
- desired.bot_comments.add(BotComment.SURVEY)
+# # temp: Disable survey link on pull requests
+# # https://github.com/openedx/openedx-webhooks/issues/259
296
+# if state in ["closed", "merged"]:
297
+# desired.bot_comments.add(BotComment.SURVEY)
298
299
if desired.is_refused and state not in ["closed", "merged"]:
300
desired.bot_comments.add(BotComment.NO_CONTRIBUTIONS)
0 commit comments