From 999e3ffffd00352a67e1a891a1daaed5975c3aab Mon Sep 17 00:00:00 2001 From: Sergei Lukianov Date: Wed, 15 Jan 2025 14:20:56 -0800 Subject: [PATCH] Fix CI HW job condition Signed-off-by: Sergei Lukianov --- .github/workflows/ci-hw.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-hw.yaml b/.github/workflows/ci-hw.yaml index cdee24fe..3974d5d8 100644 --- a/.github/workflows/ci-hw.yaml +++ b/.github/workflows/ci-hw.yaml @@ -35,7 +35,7 @@ on: jobs: hlab: - if: contains(github.event.pull_request.labels.*.name, 'ci-hw') + if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'ci-hw') runs-on: hlab timeout-minutes: 600