We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 805740b commit bab271fCopy full SHA for bab271f
.github/workflows/pullrequest.yml
@@ -35,7 +35,12 @@ jobs:
35
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
36
37
- name: Build with Maven
38
- run: mvn --batch-mode --update-snapshots verify -Dgpg.skip
+ run: |
39
+ if [ ${{ github.event.pull_request.head.repo.full_name }} = ${{ github.repository }} ]; then
40
+ mvn --batch-mode --update-snapshots verify
41
+ else
42
+ mvn --batch-mode --update-snapshots verify -Dgpg.skip
43
+ fi
44
45
- name: Upload coverage to Codecov
46
uses: codecov/codecov-action@v2
0 commit comments