We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9b151c commit 6c0bf90Copy full SHA for 6c0bf90
.github/workflows/analysis.yml
@@ -101,8 +101,14 @@ jobs:
101
ls -l ./client-v2/target/site/jacoco-aggregate/jacoco.xml
102
continue-on-error: true
103
- name: Generate and post coverage report
104
+ # Add write permissions for pull-requests
105
+ permissions:
106
+ contents: read
107
+ pull-requests: write
108
env:
109
+ # Use the default GITHUB_TOKEN with the right permissions
110
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
111
run: |
112
pwd
113
+ ls -la
114
node jacoco-report-generator.mjs ./client-v2/target/site/jacoco-aggregate/jacoco.csv coverage.md --pr ${{ github.event.pull_request.number }}
0 commit comments