Skip to content

Commit 61f8a38

Browse files
authored
Replace pull_request_target workflow with two workflows that upload/download an artifact. (#251)
* Fix: replace pull_request_target with a download/upload artifact. Signed-off-by: dblock <[email protected]> * Use upload/download-artifact@v4. Signed-off-by: dblock <[email protected]> --------- Signed-off-by: dblock <[email protected]>
1 parent e02c076 commit 61f8a38

File tree

2 files changed

+48
-13
lines changed

2 files changed

+48
-13
lines changed
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
});

.github/workflows/coverage.yml .github/workflows/coverage-gather.yml

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: API Coverage
1+
name: Gather API Coverage
22

3-
on: [push, pull_request_target]
3+
on: [push, pull_request]
44

55
env:
66
JAVA_VERSION: 11
@@ -14,8 +14,6 @@ jobs:
1414
steps:
1515
- name: Checkout Repo
1616
uses: actions/checkout@v2
17-
with:
18-
ref: ${{ github.event.pull_request.head.sha }}
1917
- name: Build Spec
2018
working-directory: ./tools
2119
run: |-
@@ -50,14 +48,15 @@ jobs:
5048
total=`jq -r '.paths | keys | length' build/local-openapi.json`
5149
percent=$((current * 100 / total))
5250
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+
}
5758
EOL
58-
- uses: peter-evans/create-or-update-comment@v4
59-
if: github.event_name == 'pull_request_target'
59+
- uses: actions/upload-artifact@v4
6060
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

0 commit comments

Comments
 (0)