We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 426f1c2 commit 203b8b8Copy full SHA for 203b8b8
1 file changed
.github/workflows/synopsys-io.yml
@@ -4,9 +4,6 @@ on:
4
push:
5
branches:
6
- master
7
- pull_request:
8
- branches:
9
- - master
10
workflow_dispatch: {}
11
12
jobs:
@@ -23,10 +20,10 @@ jobs:
23
20
- name: Checkout
24
21
uses: actions/checkout@v4
25
22
26
- - name: Assert required secrets present
27
- if: ${{ secrets.IO_SERVER_URL == '' || secrets.IO_SERVER_TOKEN == '' }}
+ - name: Fail fast if IO secrets missing
+ if: ${{ (secrets.IO_SERVER_URL == '') || (secrets.IO_SERVER_TOKEN == '') }}
28
run: |
29
- echo "Missing IO_SERVER_URL and/or IO_SERVER_TOKEN"
+ echo "Missing required secrets: IO_SERVER_URL and/or IO_SERVER_TOKEN"
30
exit 1
31
32
- name: Synopsys Intelligent Security Scan
0 commit comments