Skip to content

Commit 975da43

Browse files
authored
Fix CI: Add workflow_call trigger to security-scan workflow (#2008)
The security-scan.yml workflow was missing the workflow_call trigger needed to make it reusable. This was causing the run-on-pr.yml workflow to fail when trying to call it. Added workflow_call trigger while preserving existing triggers for workflow_dispatch, push, pull_request, and scheduled runs.
1 parent dd932d7 commit 975da43

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/security-scan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Security Scan
22

33
on:
4+
workflow_call:
45
workflow_dispatch:
56
push:
67
branches: [ main ]

0 commit comments

Comments
 (0)