From f728bceae59d5f7b6291b5f622cec4bb8ba3c489 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 10 Apr 2024 10:46:06 -0400 Subject: [PATCH] Change names of the two covscan jobs Otherwise Github thinks both are required to pass a PR, but actually only the PR one is as the scheduled scan only runs on a schedule. Signed-off-by: Simo Sorce --- .github/workflows/coverity-scan.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverity-scan.yml b/.github/workflows/coverity-scan.yml index 59f15218..d5541e8c 100644 --- a/.github/workflows/coverity-scan.yml +++ b/.github/workflows/coverity-scan.yml @@ -12,7 +12,7 @@ on: jobs: scheduled: if: ${{ github.event_name == 'schedule' }} - name: Coverity Scan + name: Recurrent Coverity Scan runs-on: ubuntu-22.04 container: fedora:latest steps: @@ -46,7 +46,7 @@ jobs: on-labeled-pr: if: ${{ contains(github.event.*.labels.*.name, 'covscan') }} - name: Coverity Scan + name: Coverity Scan on PR runs-on: ubuntu-latest permissions: pull-requests: write