File tree 1 file changed +26
-5
lines changed
1 file changed +26
-5
lines changed Original file line number Diff line number Diff line change 31
31
--run-id ${{ github.event.workflow_run.id }}
32
32
33
33
- 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 :
39
36
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
You can’t perform that action at this time.
0 commit comments