We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46e918d commit 426f1c2Copy full SHA for 426f1c2
1 file changed
.github/workflows/synopsys-io.yml
@@ -2,12 +2,18 @@ name: Synopsys Intelligent Security Scan
2
3
on:
4
push:
5
- branches: [ "main", "develop" ]
6
- workflow_dispatch:
+ branches:
+ - master
7
+ pull_request:
8
9
10
+ workflow_dispatch: {}
11
12
jobs:
13
synopsys-io:
14
+ name: Synopsys Intelligent Security Scan (IO)
15
runs-on: ubuntu-latest
16
+
17
permissions:
18
contents: read
19
security-events: write
@@ -17,6 +23,12 @@ jobs:
23
- name: Checkout
24
uses: actions/checkout@v4
25
26
+ - name: Assert required secrets present
27
+ if: ${{ secrets.IO_SERVER_URL == '' || secrets.IO_SERVER_TOKEN == '' }}
28
+ run: |
29
+ echo "Missing IO_SERVER_URL and/or IO_SERVER_TOKEN"
30
+ exit 1
31
20
32
- name: Synopsys Intelligent Security Scan
21
33
uses: blackduck-inc/intelligent-security-scan@2023.3.3
22
34
with:
0 commit comments