diff options
| author | Jose Santiago Vales Mena <[email protected]> | 2025-07-14 10:39:21 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-14 10:39:21 -0700 |
| commit | 4525b224777ceab15c0f9254735e9f76c40297d9 (patch) | |
| tree | e51079a4517971da42ee1d8cb930909888e7756b | |
| parent | b3eac5faad6154f84af853887c3bd000c3149b1c (diff) | |
| parent | 69b234c33f286e943da75a3072ead937e32a61e0 (diff) | |
Merge pull request #12 from 5an7y/sample-based-issue-template
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'] |
