File tree 2 files changed +48
-13
lines changed
2 files changed +48
-13
lines changed Original file line number Diff line number Diff line change
1
+ name : Comment with API Coverage
2
+
3
+ on :
4
+ workflow_run :
5
+ workflows : ["Gather API Coverage"]
6
+ types :
7
+ - completed
8
+
9
+ jobs :
10
+ comment :
11
+ runs-on : ubuntu-latest
12
+ if : >
13
+ github.event.workflow_run.event == 'pull_request' &&
14
+ github.event.workflow_run.conclusion == 'success'
15
+ steps :
16
+ - name : Download Coverage Report
17
+ uses : actions/download-artifact@v4
18
+ with :
19
+ github-token : ${{ secrets.GITHUB_TOKEN }}
20
+ name : coverage
21
+ run-id : ${{ github.event.workflow_run.id }}
22
+
23
+ - name : ' Comment on PR'
24
+ uses : actions/github-script@v3
25
+ with :
26
+ github-token : ${{ secrets.GITHUB_TOKEN }}
27
+ script : |
28
+ const fs = require('fs');
29
+ var data = JSON.parse(fs.readFileSync('./coverage.json'));
30
+ console.log(data);
31
+ await github.issues.createComment({
32
+ owner: context.repo.owner,
33
+ repo: context.repo.repo,
34
+ issue_number: data.pull_request,
35
+ body: `API specs implemented for ${data.current}/${data.total} (${data.percent}%) APIs.`
36
+ });
Original file line number Diff line number Diff line change 1
- name : API Coverage
1
+ name : Gather API Coverage
2
2
3
- on : [push, pull_request_target ]
3
+ on : [push, pull_request ]
4
4
5
5
env :
6
6
JAVA_VERSION : 11
14
14
steps :
15
15
- name : Checkout Repo
16
16
uses : actions/checkout@v2
17
- with :
18
- ref : ${{ github.event.pull_request.head.sha }}
19
17
- name : Build Spec
20
18
working-directory : ./tools
21
19
run : |-
@@ -50,14 +48,15 @@ jobs:
50
48
total=`jq -r '.paths | keys | length' build/local-openapi.json`
51
49
percent=$((current * 100 / total))
52
50
echo "API specs implemented for $current/$total ($percent%) APIs."
53
- cat >>"$GITHUB_OUTPUT" <<EOL
54
- current=$current
55
- total=$total
56
- percent=$percent
51
+ cat >>"coverage.json" <<EOL
52
+ {
53
+ "pull_request":${{ github.event.number }},
54
+ "current":$current,
55
+ "total":$total,
56
+ "percent":$percent
57
+ }
57
58
EOL
58
- - uses : peter-evans/create-or-update-comment@v4
59
- if : github.event_name == 'pull_request_target'
59
+ - uses : actions/upload-artifact@v4
60
60
with :
61
- issue-number : ${{ github.event.number }}
62
- body : |
63
- API specs implemented for ${{ steps.coverage.outputs.current }}/${{ steps.coverage.outputs.total }} (${{ steps.coverage.outputs.percent }}%) APIs.
61
+ name : coverage
62
+ path : coverage.json
You can’t perform that action at this time.
0 commit comments