We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f9f0fb commit d723147Copy full SHA for d723147
.github/workflows/pr-management.yml
@@ -60,9 +60,11 @@ jobs:
60
run: |
61
COMMENT=$(bun script/duplicate-pr.ts -f pr_info.txt "Check the attached file for PR details and search for duplicates")
62
63
- gh pr comment "$PR_NUMBER" --body "_The following comment was made by an LLM, it may be inaccurate:_
+ if [ "$COMMENT" != "No duplicate PRs found" ]; then
64
+ gh pr comment "$PR_NUMBER" --body "_The following comment was made by an LLM, it may be inaccurate:_
65
66
$COMMENT"
67
+ fi
68
69
add-contributor-label:
70
runs-on: ubuntu-latest
0 commit comments