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 2757c07 commit 4c975baCopy full SHA for 4c975ba
.github/workflows/coveralls.yaml
@@ -16,7 +16,7 @@
16
17
name: Coveralls
18
19
-on: [push, pull_request]
+on: [pull_request]
20
21
jobs:
22
build:
@@ -32,6 +32,7 @@ jobs:
32
with:
33
java-version: 8
34
- name: Report Coverage to Coveralls
35
- run: ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github
+ run: ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER
36
env:
37
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
+ PR_NUMBER: ${{ github.event.number }}
0 commit comments