Skip to content

Commit 27f62b9

Browse files
committed
ci: Use GitHub API directly to post PR coverage comments (#7758)
1 parent a5eb9d1 commit 27f62b9

File tree

1 file changed

+26
-5
lines changed

1 file changed

+26
-5
lines changed

.github/workflows/report-incremental-coverage.yaml

+26-5
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,30 @@ jobs:
3131
--run-id ${{ github.event.workflow_run.id }}
3232
3333
- name: Report incremental code coverage
34-
uses: thollander/actions-comment-pull-request@686ab1cab89e0f715a44a0d04b9fdfdd4f33d751
35-
with:
36-
message: "Incremental code coverage: ${{ steps.compute.outputs.coverage }}"
37-
comment_includes: "Incremental code coverage: "
38-
pr_number: ${{ steps.compute.outputs.pr_number }}
34+
shell: bash
35+
env:
3936
GITHUB_TOKEN: ${{ secrets.SHAKA_BOT_TOKEN }}
37+
PR_NUMBER: ${{ steps.compute.outputs.pr_number }}
38+
MESSAGE: "Incremental code coverage: ${{ steps.compute.outputs.coverage }}"
39+
COMMENT_INCLUDES: "Incremental code coverage: "
40+
COMMENT_USER: "shaka-bot"
41+
run: |
42+
# Look for an old comment
43+
jq_filter=".[] | select((.user.login == \"$COMMENT_USER\") and (.body | startswith(\"$COMMENT_INCLUDES\"))) | .id"
44+
gh api \
45+
/repos/${{ github.repository }}/issues/$PR_NUMBER/comments \
46+
| jq "$jq_filter" > old-comment-id
47+
48+
if [[ -z "$(cat old-comment-id)" ]]; then
49+
# Create a new comment
50+
gh api \
51+
--method POST \
52+
/repos/${{ github.repository }}/issues/$PR_NUMBER/comments \
53+
-F "body=$MESSAGE"
54+
else
55+
# Update an old comment
56+
gh api \
57+
--method PATCH \
58+
/repos/${{ github.repository }}/issues/comments/$(cat old-comment-id) \
59+
-F "body=$MESSAGE"
60+
fi

0 commit comments

Comments
 (0)