Skip to content

Commit

Permalink
Only run coverity scan if coverity token is available
Browse files Browse the repository at this point in the history
Change-Id: Id95e0124d943912439c6ec6f562c0eb40d434163
  • Loading branch information
schwabe committed Dec 29, 2023
1 parent 2670975 commit 3ee855f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/coverity-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ on:
schedule:
- cron: '0 20 * * *' # Daily at 20:00 UTC
workflow_dispatch:
push:

jobs:
latest:
env:
HAS_COV_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN != '' }}
if: env.HAS_COV_TOKEN == 'true'
runs-on: ubuntu-latest
steps:
- name: Check submission cache
Expand Down

0 comments on commit 3ee855f

Please sign in to comment.