diff --git a/.github/scripts/docathon-label-sync.py b/.github/scripts/docathon-label-sync.py index ccd2eb0f4bd..04f4707a55c 100644 --- a/.github/scripts/docathon-label-sync.py +++ b/.github/scripts/docathon-label-sync.py @@ -39,7 +39,9 @@ def main() -> None: pull_request_label_names = [label.name for label in pull_request_labels] issue_label_names = [label.name for label in issue_labels] labels_to_add = [ - label for label in issue_label_names if label not in pull_request_label_names + label + for label in issue_label_names + if label not in pull_request_label_names and label != "actionable" ] if not labels_to_add: print("The pull request already has the same labels.")