Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions openedx_webhooks/tasks/pr_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
sarina marked this conversation as resolved.
# # 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)
Expand Down