diff options
| author | 5an7y <[email protected]> | 2025-07-14 10:38:38 -0700 |
|---|---|---|
| committer | 5an7y <[email protected]> | 2025-07-14 10:38:38 -0700 |
| commit | 69b234c33f286e943da75a3072ead937e32a61e0 (patch) | |
| tree | aeea09f1a7a195870e43a545bdf1f553b803831f | |
| parent | 12d6551b8178301f57677eee858d6c3e66743e18 (diff) | |
Fix selected path bug
| -rw-r--r-- | .github/workflows/tag-codeowner-on-issue.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/tag-codeowner-on-issue.yml b/.github/workflows/tag-codeowner-on-issue.yml index 7b67272a..ec7524ac 100644 --- a/.github/workflows/tag-codeowner-on-issue.yml +++ b/.github/workflows/tag-codeowner-on-issue.yml @@ -28,7 +28,6 @@ jobs: import os import re import requests - import yaml issue_body = """${{ github.event.issue.body }}""" selected_path = None @@ -66,7 +65,7 @@ jobs: exit(0) # Post a comment tagging the owner - comment = f"{codeowner} can you please take a look at this issue related to `{selected_path}`?" + comment = f"{codeowner} can you please take a look at this issue related to {selected_path}?" repo = os.environ['GITHUB_REPOSITORY'] token = os.environ['GITHUB_TOKEN'] |
