Skip to content

Commit cfd1a2a

Browse files
authored
Merge pull request #357 from KFilipek/coverity_schedule
Fix condition to make scheduled Coverity work as planned
2 parents 0004327 + e34c3ba commit cfd1a2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
tar czvf cov-int_umf.tgz cov-int
5959
6060
- name: Push to Coverity Scan
61-
if: ${{ github.event.inputs.cov_push_tarball == 'true' }}
61+
if: ${{ github.event_name == 'schedule' || github.event.inputs.cov_push_tarball == 'true' }}
6262
run: |
6363
BRANCH_NAME=$(echo ${GITHUB_REF_NAME})
6464
COMMIT_ID=$(echo $GITHUB_SHA)

0 commit comments

Comments
 (0)