Skip to content

Commit ba63cf0

Browse files
committed
Fix bash syntax error in workflow
- Fixed mismatched quote and parenthesis in curl command - Corrected line 152 syntax error that was causing exit code 2
1 parent 5bd9637 commit ba63cf0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/issue_comp_link-issue-to-pr.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,7 @@ jobs:
148148
-H "Authorization: Bearer ${{ env.GH_TOKEN }}" \
149149
-H "X-GitHub-Api-Version: 2022-11-28" \
150150
https://api.github.com/repos/${{ github.repository }}/issues/${{ steps.determine_issue.outputs.final_issue_number }}/comments \
151-
| jq -c .
152-
)"
151+
| jq -c .)
153152
154153
echo "comments=$comments" >> "$GITHUB_OUTPUT"
155154

0 commit comments

Comments
 (0)