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 265a7eb commit 506cf14Copy full SHA for 506cf14
.github/workflows/analysis.yml
@@ -107,7 +107,9 @@ jobs:
107
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
108
run: |
109
PR_ARG=''
110
- if [ ! -z $PR_NUMBER ]; then RP_ARG="--pr $PR_NUMBER"; fi;
+ if [ ! -z $PR_NUMBER ]; then export RP_ARG="--pr $PR_NUMBER"; fi;
111
+ echo "pr number: $PR_NUMBER";
112
+ echo "pr number: ${{ github.event.pull_request.number || '' }}"
113
echo $PR_ARG
114
node jacoco-report-generator.mjs ./client-v2/target/site/jacoco-aggregate/jacoco.csv client-v2-cov.md --title "Client V2 Coverage" ${PR_ARG}
115
node jacoco-report-generator.mjs ./jdbc-v2/target/site/jacoco-aggregate/jacoco.csv jdbc-v2-cov.md --title "JDBC V2 Coverage" ${PR_ARG}
0 commit comments