We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea12e9c commit bcbb8efCopy full SHA for bcbb8ef
1 file changed
.github/workflows/security.yml
@@ -88,8 +88,8 @@ jobs:
88
uses: trufflesecurity/trufflehog@main
89
with:
90
path: ./
91
- base: main
92
- head: HEAD
+ base: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || 'HEAD~1' }}
+ head: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'HEAD' }}
93
extra_args: --debug --only-verified
94
95
crypto-analysis:
0 commit comments