Skip to content

Commit 99554ad

Browse files
authored
[AUTOREVERT] [BUGFIX] fixing typo in variable name preventing revert message to be issued (#7252)
1 parent 53c6bdf commit 99554ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws/lambda/pytorch-auto-revert/pytorch_auto_revert/signal_actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ def _comment_issue_pr_revert(
594594
# used both to revert and notify
595595
breaking_notification_msg = "This PR is breaking the following workflows:\n"
596596
for workflow_name, sources in workflow_groups.items():
597-
all_signals = ", ".join([source.signal_name for source in sources])
597+
all_signals = ", ".join([source.key for source in sources])
598598
breaking_notification_msg += f"- {workflow_name}: {all_signals}\n"
599599

600600
try:

0 commit comments

Comments
 (0)